博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1003 Max Sum(求最大字段和)
阅读量:6913 次
发布时间:2019-06-27

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

事实上这连续发表的三篇是一模一样的思路,我就厚颜无耻的再发一篇吧!

题目链接:

----------------------------------------------------------------------------------------------------------------------------------------------------------
欢迎光临天资小屋:
 
----------------------------------------------------------------------------------------------------------------------------------------------------------

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 
#define INF 0x3fffffff#define M 100000+17int a[M];int main(){ int n, i, T, k = 0; while(~scanf("%d",&T)) { while(T--) { scanf("%d",&n); int s = 1, e = 1, t = 1; int sum = 0, MAX = -INF; for(i = 1; i <= n; i++) { scanf("%d",&a[i]); sum+=a[i]; if(sum > MAX) { s = t; e = i; MAX = sum; } if(sum < 0) { t = i+1; sum = 0; } } printf("Case %d:\n",++k); printf("%d %d %d\n",MAX,s,e); if(T!=0) printf("\n"); } } return 0;}

转载地址:http://zlncl.baihongyu.com/

你可能感兴趣的文章
JMeter源码导入到Intellij IDEA
查看>>
浅谈String中的==和对象中引用对象类型的==
查看>>
ASP.NET-FineUI开发实践-17
查看>>
webkit.net开发时的注意事项
查看>>
防止用户按浏览器后退按钮回到登陆页面
查看>>
让窗体大小固定、任务栏不显示
查看>>
Debian Security Advisory(Debian安全报告) DSA-4403-1 php7.0
查看>>
Algs4-2.4.16构造堆排序比较次数最多和最少的堆
查看>>
numpy linalg模块
查看>>
docker 的简单使用
查看>>
Java基础/阿里巴巴Java开发手册
查看>>
python学习笔记十一:操作mysql
查看>>
war 配置文件路径
查看>>
linux 打包与解包
查看>>
scrapy-redis使用以及剖析
查看>>
(转载)Javascript 严格模式详解
查看>>
[C++] Const Summary (mind map)
查看>>
day08 文件操作
查看>>
WSL quick overview
查看>>
[解题报告]The Lazy Lumberjacks
查看>>