爱圈住你我 2016-05-06 04:07 采纳率: 100%
浏览 1178
已采纳

帮找一下问什么wrong answer

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

#include
#include
using namespace std;

int a[100010];
int sum;

int main()
{
int n;
//the number of test cases.
cin>>n;
int i;
for(int val=1;val {
cin>>sum;
//the lines starts with a number N
//the N numbers of the line
for(i=0;i cin>>a[i];
int ncurstart=0,ncurend=0;
int start=0,end=0;
int ncursum=0;
int ngreatsum = -1001;
for(i=0;i {
ncursum+=a[i];
ncurend=i+1;
if(ncursum {
ncursum=0;
ncurstart=i+1;
ncurend=i+1;
}
if(ncursum>ngreatsum)
{
ngreatsum=ncursum;
start=ncurstart;
end=ncurend;
}

    }
    printf("Case %d:\n",val);
    printf("%d %d %d\n\n",ngreatsum,start+1,end);

}
return 0;

}

  • 写回答

1条回答 默认 最新

  • devmiao 2016-05-06 22:50
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog