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

杭电1003 最大连续子串

时间:2015-04-05 14:32:16      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

 6 -1 5 4 -7

技术分享
#include<iostream>
using namespace std;
int main(){
    int t,n,a,max,sum,start,end,temp;
    
    while(cin>>t){
        for(int i=1;i<=t;i++){
       cin>>n;
       max=-1001;
       temp=1;
       sum=0;
       for(int i=1;i<=n;i++){
           cin>>a;
           sum+=a;
           if(max<sum){
               max=sum;
               start=temp;
               end=i;
           }
           if(sum<0){
               temp=i+1;
               sum=0;
           }
       }
       cout<<"Case "<<i<<":"<<endl;
       cout<<max<<" "<<start<<" "<<end<<endl;
       if(i<t)
           cout<<endl;
        }
    }
    return 0;
}
View Code

 

杭电1003 最大连续子串

标签:

原文地址:http://www.cnblogs.com/wintersong/p/4394020.html

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