Leetcode 813 Largest Sum of Averages (区间dp)

网友投稿 265 2022-08-30

Leetcode 813 Largest Sum of Averages (区间dp)

Description

We partition a row of numbers A into at most K adjacent (non-empty) groups, then our score is the sum of the average of each group. What is the largest score we can achieve?Note that our partition must use every number in A, and that scores are not necessarily integers.

Input

A = [9,1,2,3,9]K = 3

Output

20

题意

长度为 n n 的数组最多可分为 kk

思路

因为数据很水的原因,就用最普通的做法咯~ ( 1<=n<=100 1 <= n <= 100

设 dp[i][j][k] d p [ i ] [ j ] [ k ] 为区间 [i,j] [ i , j ] 分为 k k

dp[i][j][k]=max(dp[i][j][k],dp[i][s][k−1]+Sum(s+1,j)j−s)dp[i][j][k]=max(dp[i][j][k],dp[i][s][k−1]+Sum(s+1,j)j−s)

其中 s s 为区间 [i,j][i,j] 之间的一个分割点,最终的结果:dp[0][len−1][K] d p [ 0 ] [ l e n − 1 ] [ K ]

AC 代码

const int maxn = 1e2+10;double dp[maxn][maxn][maxn];int sum[maxn];class Solution{public: int getSum(int x,int y) { return sum[y] - (x==0?0 : sum[x-1]); } double largestSumOfAverages(vector& A, int K) { memset(sum,0,sizeof(sum)); memset(dp,0,sizeof dp); int len = A.size(); sum[0] = A[0]; for(int i=1; i

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:“懒人神器”不过是营销噱头!(懒人神器广告语)
下一篇:创业者不能错过的六个营销策略!(几大营销策略)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~