首页 > 代码库 > [51NOD1959]循环数组最大子段和(dp,思路)
[51NOD1959]循环数组最大子段和(dp,思路)
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1050
这道题的最大子段和有两种可能,一种是常规的子段和,另一种是从结尾到开头的一个子段。常规做是一种可能,另一种带循环的则可以认为是序列中间有一段最小子段和,把这段最小子段和去掉,剩下的可能就是最大子段和了。
1 #include <bits/stdc++.h> 2 using namespace std; 3 4 typedef long long LL; 5 const int maxn = 50050 * 2; 6 int n; 7 int a[maxn]; 8 9 int main() { 10 // freopen("in", "r", stdin); 11 while(~scanf("%d", &n)) { 12 bool flag = 0; 13 LL sum = 0, ret1 = 0, ret2 = 0; 14 for(int i = 1; i <= n; i++) { 15 scanf("%d", &a[i]); 16 sum += a[i]; 17 if(a[i] < 0) flag = 1; 18 } 19 if(!flag) { 20 printf("%lld\n", sum); 21 continue; 22 } 23 LL tmp = 0; 24 for(int i = 1; i <= n; i++) { 25 ret1 = max(tmp, ret1); 26 tmp += a[i]; 27 if(tmp < 0) tmp = 0; 28 } 29 for(int i = 1; i <= n; i++) a[i] = -a[i]; 30 tmp = 0; 31 for(int i = 1; i <= n; i++) { 32 ret2 = max(tmp, ret2); 33 tmp += a[i]; 34 if(tmp < 0) tmp = 0; 35 } 36 printf("%lld\n", max(ret1, sum+ret2)); 37 } 38 return 0; 39 }
[51NOD1959]循环数组最大子段和(dp,思路)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。