hdu1024

发布 : 2020-05-18 分类 : 动态规划 浏览 :

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=1024

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <cstdio>
#include <algorithm>
#define FI(a, b, c) for(int a = (b); a <= (c); a++)
#define FD(a, b, c) for(int a = (b); a >= (c); a--)
using namespace std;

int n, m, t;
long long d[1000005], l[1000005];

int main(){
while(scanf("%d %d", &m, &n) != EOF){
FI(i, 1, m) d[i] = l[i] = -1e15;

while(n--){
scanf("%d", &t);
FD(i, m, 1){
d[i] = max(d[i], l[i - 1]) + t;
l[i] = max(l[i], d[i]);
}
}
printf("%lld\n", l[m]);
}
}

本文作者 : preccrep
原文链接 : https://preccrep.github.io/2020/05/18/hdu1024/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
留下足迹

博客已萌萌哒运行(●'◡'●)ノ♥
Theme - BMW | Made With 💗 | Powered by GodBMW