hdu_1003_Max Sum_201311271630
Max Sum
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 121261 Accepted Submission(s): 28030
Problem Description
Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5 + 4 = 14.
Input
The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines follow, each line starts with a number N(1<=N<=100000), then N integers followed(all the integers are between -1000 and 1000).
Output
For each test case, you should output two lines. The first line is "Case #:", # means the number of the test case. The second line contains three integers, the Max Sum in the sequence, the start position of the sub-sequence, the end position of the sub-sequence. If there are more than one result, output the first one. Output a blank line between two cases.
Sample Input
2 5 6 -1 5 4 -7 7 0 6 -1 1 -6 7 -5
Sample Output
Case 1: 14 1 4 Case 2: 7 1 6
Author
Ignatius.L
1 #include <stdio.h> 2 3 int main() 4 { 5 int k,T; 6 scanf("%d",&T); 7 for(k=1;k<=T;k++) 8 { 9 int i,j; 10 int sta,end,n,m; 11 int t=0,max=-1111; 12 scanf("%d",&n); 13 sta=end=j=1; 14 for(i=1;i<=n;i++) 15 { 16 scanf("%d",&m); 17 t += m; 18 if(t>max) 19 { 20 max=t; 21 sta=j; 22 end=i; 23 } 24 if(t<0) 25 { 26 t=0; 27 j=i+1; 28 } 29 } 30 if(k-1) 31 printf("\n"); 32 printf("Case %d:\n",k); 33 printf("%d %d %d\n",max,sta,end); 34 } 35 return 0; 36 }
最大连续子序和
不错的资源:
http://blog.csdn.net/luxiaoxun/article/details/7438315
http://blog.csdn.net/code_pang/article/details/7772200
http://blog.csdn.net/shahdza/article/details/6302823
http://www.cnblogs.com/CCBB/archive/2009/04/25/1443455.html
参考代码:
1 #include <stdio.h> 2 int main() 3 {int n,T,a,sta,end,max,k,i,p,t; 4 5 scanf("%d",&T); 6 for(p=1;p<=T;p++) { 7 scanf("%d",&n); 8 max=-9999; //因为一个数a 是-1000~1000的,所以这里相当于变成最小值 9 t=0; //表示 某段连续和 10 sta=end=k=1; // sta最大和的开始,end最大和的结束,k记录每次求和的开始 11 for(i=1;i<=n;i++) { 12 scanf("%d",&a); 13 14 t+=a; 15 if(t>max) { //记录最大连续和的值 16 max=t; 17 sta=k; 18 end=i; 19 } 20 if(t<0) { 21 t=0; 22 k=i+1; 23 } 24 } 25 26 if(p!=1) printf("/n"); 27 printf("Case %d:/n",p); 28 printf("%d %d %d/n",max,sta,end); 29 } 30 }