爱圈住你我 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 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条