带运算符号的最大子序列

阅读: 评论:0

带运算符号的最大子序列

带运算符号的最大子序列

目录

问题大意:

样例输入:

样例输出:

解决方案:


问题描述:

 题目:

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

 

解决方案:

  1.        
    #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 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23