Max Sum Plus Plus
1 3 1 2 3 2 6 -1 4 -2 3 -2 3
6 8HintHuge input, scanf and dynamic programming is recommended.
这个我可能解释不清楚,附上各种解题思路:
http://blog.csdn.net/juststeps/article/details/8687369
http://www.cnblogs.com/kuangbin/archive/2011/08/04/2127085.html
http://blog.sina.com.cn/s/blog_677a3eb30100jxqa.html
http://www.xuebuyuan.com/1410276.html
http://blog.csdn.net/acm_davidcn/article/details/5887401
http://www.cnblogs.com/wally/archive/2013/03/13/2957061.html
http://blog.csdn.net/xymscau/article/details/6857311
http://m.blog.csdn.net/blog/kay_zhyu/8727993
http://blog.csdn.net/zhanglei0107/article/details/7423419
// 状态:dp[i][j]表示以j结尾的i个子段和的最优解 // 转移:dp[i][j] = max{dp[i][j-1],max{dp[i-1][t]}}+a[j]; // 第j个数字要么作为新的起点加入队列,要么直接加到前一段里 #include <iostream> #include <cstdio> #include <cstring> #include <string> #include <map> #include <algorithm> using namespace std; const int MAXN = 1000000 + 10; int s[MAXN], DP[MAXN], pre[MAXN], n, m; int main() { while(scanf("%d%d", &m, &n) != EOF) { memset(DP, 0, sizeof(DP)); memset(pre, 0, sizeof(pre)); for(int i = 1; i <= n; i ++) scanf("%d", &s[i]); int ans; for(int i = 1; i <= m; i ++) { ans = -(1 << 31); for(int j = i;j <= n; j ++) { DP[j] = max(DP[j - 1] + s[j], pre[j - 1] + s[j]); // 保存局部最优解 pre[j - 1] = ans; ans = max(ans, DP[j]); } } cout << ans << endl; } return 0; }