问题描述:
题目:
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.
该问题输入一个数n,接下来有n行数据,第一个数输入m,后面有m个数据,m个数据组成序列,求一个子序列所得的最大值,并且求出子序列的开始位置(头),结束位置(尾)
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 "stdio.h"
#include "string.h"
#include "algorithm"
using namespace std;
int a[101000];
int main ()
{int t,i,k,n,j=0;int s,g;scanf("%d",&t);while(t--){j++;int intf=-999999;int sum=0;memset(a,0,sizeof(a));scanf("%d",&n);for(i=1; i<=n; i++)scanf("%d",&a[i]);int head=1;//记录头部 for(i=1; i<=n; i++){sum=sum+a[i];// 依次求和 //如果和大于0,且再向后加数的时候比前一个和大 ; //更新结束位置(尾部); if(sum>intf) {intf=sum; s=head;g=i;//记录尾部; } if(sum<0){sum=0;head=i+1;}// 和小于0// 更新头部; }printf("Case %d:n",j);printf("%d %d %dn",intf,s,g);if(t) printf("n");}return 0;
}
本文发布于:2024-01-29 13:41:55,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170650691915669.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |