01-复杂度2 Maximum Subsequence Sum(25 分)

来源:互联网 发布:直播平台系统源码 编辑:程序博客网 时间:2024/05/29 03:20

Given a sequence of K integers { N ​1 ​​ , N ​2 ​​ , …, N ​K ​​ }. A continuous subsequence is defined to be { N ​i ​​ , N ​i+1 ​​ , …, N ​j ​​ } where 1≤i≤j≤K. The Maximum Subsequence is the continuous subsequence which has the largest sum of its elements. For example, given sequence { -2, 11, -4, 13, -5, -2 }, its maximum subsequence is { 11, -4, 13 } with the largest sum being 20.

Now you are supposed to find the largest sum, together with the first and the last numbers of the maximum subsequence.

Input Specification:

Each input file contains one test case. Each case occupies two lines. The first line contains a positive integer K (≤10000). The second line contains K numbers, separated by a space.

Output Specification:

For each test case, output in one line the largest sum, together with the first and the last numbers of the maximum subsequence. The numbers must be separated by one space, but there must be no extra space at the end of a line. In case that the maximum subsequence is not unique, output the one with the smallest indices i and j (as shown by the sample case). If all the K numbers are negative, then its maximum sum is defined to be 0, and you are supposed to output the first and the last numbers of the whole sequence.

Sample Input:

10
-10 1 2 3 4 -5 -23 3 7 -21

Sample Output:

10 1 4

题目大意:
给定K个整数{N 1,N 2,…,N K}的序列。连续子序列被定义为{N i,N i + 1,…,N j},其中1≤i≤j≤K。最大子序列是其元素总和最大的连续子序列。例如,给定序列{-2,11,-4,13,-5,-2},其最大子序列为{11,-4,13},最大和为20。

现在你应该找到最大的和,连同最大次序的第一个和最后一个数字。

输入规格:

每个输入文件包含一个测试用例。每个案例都有两行。第一行包含正整数K(≤10000)。第二行包含K个数字,用空格分隔。

输出规格:

对于每个测试用例,一行输出最大和,以及最大子序列的第一个和最后一个数字。数字必须由一个空格分开,但行尾不能有空格。在最大子序列不唯一的情况下,输出具有最小索引i和j(如示例情况所示)的索引。如果所有K个数字都为负数,则其最大和定义为0,并且您应该输出整个序列的第一个和最后一个数字。

该题一开始只考虑了正数,提交时发现还有0和负数的情况,故而又花了时间做了修改。

#include<iostream>using namespace std;void MaxSubseqSum4( int A[], int N,int first,int last){    int ThisSum,MaxSum;    int i,Maxfirst,Maxlast;    ThisSum=MaxSum=0;    int flag=1;    for(i=0;i<N;i++)    {        if(flag==1)            first=A[i];        ThisSum+=A[i];        flag=0;        if(ThisSum>MaxSum)        {            MaxSum=ThisSum;            Maxfirst=first;            Maxlast=A[i];        }        else if(ThisSum<0)        {            ThisSum=0;            flag=1;        }    }    if(MaxSum==0)    {        for(i=0;i<N;i++)        {            if(A[i]==0)                break;        }        if(i==N)        {               Maxfirst=A[0];            for(i=0;i<N;i++)                if(A[i]>Maxfirst)                    Maxfirst=A[i];            cout<<Maxfirst<<" "<<Maxfirst<<" "<<Maxfirst<<endl;        }        else             cout<<"0 0 0"<<endl;    }    else        cout<<MaxSum<<" "<<Maxfirst<<" "<<Maxlast<<endl;}int main(){    int k,first,last;    cin>>k;    int *a;    a=new int[k];    for(int i=0;i<k;i++)        cin>>a[i];    MaxSubseqSum4(a,k,first,last);    delete []a;    return 0;}

不知道为什么测试数据4全是负数一直答案错误。。。
当全是负数时,最大和不就是最大的负数,第一个和最后一个不也是这个负数吗。。。

原创粉丝点击