[CF467C] George and Job - DP,前缀和

Posted mollnn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CF467C] George and Job - DP,前缀和相关的知识,希望对你有一定的参考价值。

简单dp + 前缀和
你谷这乱标难度的风气真是……

#include <bits/stdc++.h>
using namespace std;

#define int long long
const int N = 5005;

int f[N][N],s[N],n,m,k;

signed main() {
    scanf("%lld%lld%lld",&n,&m,&k);
    for(int i=1;i<=n;i++) scanf("%lld",&s[i]), s[i]+=s[i-1];
    for(int i=1;i<=n;i++)
        for(int j=1;j<=k;j++) {
            if(i<m) f[i][j]=f[i-1][j];
            else f[i][j]=max(f[i-1][j],f[i-m][j-1]+s[i]-s[i-m]);
        }
    cout<<f[n][k];
}

以上是关于[CF467C] George and Job - DP,前缀和的主要内容,如果未能解决你的问题,请参考以下文章

题解 CF387B George and Round

Codeforces Round #267 (Div. 2) C. George and Job

CF877E Danil and a Part-time Job 线段树维护dfs序

Codeforces 387E George and Cards

Codeforces Round #227 (Div. 2) / 387C George and Number (贪心)

codeforces467C