博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[ACM] hdu 1003 Max Sum(最大子段和模型)
阅读量:4467 次
发布时间:2019-06-08

本文共 1998 字,大约阅读时间需要 6 分钟。

Max Sum

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 135262    Accepted Submission(s): 31311

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
 

 

Author

 

Ignatius.L

 

解题思路:

当全部数都为负数时,最大子段和为0.

int MaxSum(int num[],int n){    int sum=0,b=0;    int i;    for (i=1;i<=n;i++)    {        if(b>0)            b+=num[i];        else            b=num[i];        if(b>sum)            sum=b;    }    return sum;}

仅仅求最大和,没有保存位置。

保存位置:start为起 end为末

int start=1,end=1,s=1,e=1;       int sum=0,max=num[1];//不能让max=0        for(int i=1;i<=n;i++)        {            e=i;            sum=sum+num[i];            if(max

 

本题须要保存起始位置。以下代码假设全是负数,输出最小的那个位置

代码:

#include 
using namespace std;const int maxn=100002;int num[maxn];int n;int main(){ int t;cin>>t;int c=1; while(t--) { cin>>n; for(int i=1;i<=n;i++) cin>>num[i]; int start=1,end=1,s=1,e=1;//这里start end一定要赋值为1 int sum=0,max=num[1];//不能让max=0 for(int i=1;i<=n;i++) { e=i; sum=sum+num[i]; if(max

 

转载于:https://www.cnblogs.com/hrhguanli/p/3886821.html

你可能感兴趣的文章
Maximum-SubsequenceSum
查看>>
常用的一些shell变量
查看>>
Android无法删除项目+导入项目报错
查看>>
poj 2349(最小生成树应用)
查看>>
Shell编程-条件测试 | 基础篇
查看>>
AngularJs学习笔记1——总体介绍
查看>>
C语言第十二讲,文件操作.
查看>>
绝对定位和相对定位
查看>>
实习第二天——学习mac终端命令(unix命令)和git代码管理
查看>>
微信支付
查看>>
吴裕雄--天生自然 高等数学学习:含参变量的积分
查看>>
成本的费用归集
查看>>
本周ASP.NET英文技术文章推荐[01/28 - 02/03]
查看>>
运行时库组件 RuntimePack v19.06.05 Full 纯净安装版
查看>>
NYOJ100 - 1的个数
查看>>
左侧定宽右侧自适应布局
查看>>
文件和目录的访问控制(4) 审核规则
查看>>
搭建svn的一些问题
查看>>
Python 爬虫插件
查看>>
【BZOJ-3809】Gty的二逼妹子序列 分块 + 莫队算法
查看>>