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

[HDU 1003]Max Sum

时间:2014-10-21 00:58:54      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:io   for   sp   on   问题   代码   amp   时间   bs   

题目:最大子序列求和

 


#include <cstdio>

using namespace std;

const int max = 100000 + 10;
int tt;

void OutAns(int c,int ans,int beg,int end)
{
    printf("Case %d:\n",c);
    printf("%d %d %d",ans,beg,end);

    if(c != tt)printf("\n\n");
    else printf("\n");
}


int main()
{
    int t;
    int c = 0;

    scanf("%d",&t);tt = t;
    while(t--)
    {
        c++;
        
        int date,e,n;
        int f = 0,now = 0,b = 1,b1=1,M = -20000;
        

        scanf("%d",&n);
        for(int i = 1;i <= n;i++)
        {
            scanf("%d",&date);
            now += date;
            if(now > M)
            {
                M = now;
                e = i;
                b = b1;
            }
             if(now < 0)
            {
                b1 = i+1;
                now = 0;
            }
        }
        OutAns(c,M,b,e);
    }
        return 0;
    
}    

PS 1. 注意时间复杂度的问题。开始时n^2 T了   然后才想到还有这个方法

    2.注意前后的关联性,什么时候更新答案。

   3.被学长吐嘈代码难看。。。好吧,确实不是很好看,慢慢改吧。。。

 


       



[HDU 1003]Max Sum

标签:io   for   sp   on   问题   代码   amp   时间   bs   

原文地址:http://www.cnblogs.com/5lyTher1n/p/4039181.html

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