标签:结果 sub 记录 max sum case cond 输出 follow clu
Description
Input
Output
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
#include<cstdio> using namespace std; #define INF 0x7fffffff int const maxn=100000+10; int a[maxn]; int main() { int kcase=1; int T,n,max,star,end,pos,sum;//max为最大字段和。star为枚举起始位置,end为枚举终止位置。sum为字段和。pos用来更新枚举起始位置 scanf("%d",&T); while(T--) { scanf("%d",&n); max=-INF; pos=sum=0; for(int i=0;i<n;i++) { scanf("%d",&a[i]); sum+=a[i]; if(sum>max) { max=sum; star=pos; end=i; } if(sum<0) { sum=0; pos=i+1; } } printf("Case %d:\n",kcase++); printf("%d %d %d\n",max,star+1,end+1);//数组下标是从0開始的,而数的位置是从1開始的 if(T) printf("\n"); } return 0; }
标签:结果 sub 记录 max sum case cond 输出 follow clu
原文地址:http://www.cnblogs.com/yxysuanfa/p/7236679.html