码迷,mamicode.com
首页 > 其他好文 > 详细

最大字段和

时间:2017-04-10 23:09:36      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:span   最大字段和   stream   color   art   names   problem   pre   int   

基准时间限制:1 秒 空间限制:131072 KB
N个整数组成的序列a[1],a[2],a[3],…,a[n],求该序列如a[i]+a[i+1]+…+a[j]的连续子段和的最大值。当所给的整数均为负数时和为0。
 
例如:-2,11,-4,13,-5,-2,和最大的子段为:11,-4,13。和为20。
Input
第1行:整数序列的长度N(2 <= N <= 50000)
第2 - N + 1行:N个整数(-10^9 <= A[i] <= 10^9)
Output
输出最大子段和。
Input示例
6
-2
11
-4
13
-5
-2
Output示例
20

 1 #include <iostream>
 2 #include <cstdio>
 3 using namespace std;
 4 const int MAXN = 50000+5;
 5 int a[MAXN];
 6 int main()
 7 {
 8     int n;
 9     while(~scanf("%d",&n))
10     {
11         for(int i=1; i<=n; i++)
12             scanf("%d",&a[i]);
13         long long Max = 0, sum = 0;
14         for(int i=1; i<=n; i++)
15         {
16             //cout << sum << endl;
17             if(sum >= 0)
18                 sum += a[i];
19             else
20                 sum = a[i];
21             if(sum > Max)
22                 Max = sum;
23         }
24         printf("%lld\n",Max);
25     }
26     return 0;
27 }

 

最大字段和

标签:span   最大字段和   stream   color   art   names   problem   pre   int   

原文地址:http://www.cnblogs.com/jxust-jiege666/p/6691408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!