博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2479 Maximum sum[DP|最大子段和]
阅读量:5928 次
发布时间:2019-06-19

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

Maximum sum
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 39599   Accepted: 12370

Description

Given a set of n integers: A={a1, a2,..., an}, we define a function d(A) as below:
Your task is to calculate d(A).

Input

The input consists of T(<=30) test cases. The number of test cases (T) is given in the first line of the input. 
Each test case contains two lines. The first line is an integer n(2<=n<=50000). The second line contains n integers: a1, a2, ..., an. (|ai| <= 10000).There is an empty line after each case.

Output

Print exactly one line for each test case. The line should contain the integer d(A).

Sample Input

1101 -1 2 2 3 -3 4 -4 5 -5

Sample Output

13

Hint

In the sample, we choose {2,2,3,-3,4} and {5}, then we can get the answer. 
Huge input,scanf is recommended.

Source

,Author:Mathematica@ZSU

题意:求两段和最大

一开始自己想
d[i][0]前i个以i结尾选了一段
d[i][1]前i个以i结尾选了两段
然后扫描维护一个d[i][0]的最大值mx,转移

d[i][0]=max(0,d[i-1][0])+a[i];

d[i][1]=max(d[i-1][1],mx)+a[i];

初始化注意一下就行了

 

还有一种做法:

双向求最大字段和,最后枚举第一段的结束位置求

//两个dp函数,两种方法#include 
#include
#include
#include
using namespace std;const int N=5e4+5,INF=1e9;inline int read(){ char c=getchar();int x=0,f=1; while(c<'0'||c>'9'){
if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x*f;}int T,n,a[N];int d[N][2],ans;void dp(){ ans=-INF;int mx=a[1]; d[1][0]=a[1];d[1][1]=-INF; for(int i=2;i<=n;i++){ d[i][0]=max(0,d[i-1][0])+a[i]; d[i][1]=max(d[i-1][1],mx)+a[i]; mx=max(mx,d[i][0]); ans=max(ans,d[i][1]); }}void dp2(){ ans=-INF; for(int i=1;i<=n;i++) d[i][0]=max(0,d[i-1][0])+a[i]; d[n+1][1]=0; for(int i=n;i>=1;i--) d[i][1]=max(0,d[i+1][1])+a[i]; int mx=d[1][0]; for(int i=2;i<=n;i++){ ans=max(ans,mx+d[i][1]); mx=max(mx,d[i][0]); }}int main(int argc, const char * argv[]) { T=read(); while(T--){ n=read(); for(int i=1;i<=n;i++) a[i]=read(); dp(); printf("%d\n",ans); } return 0;}

 

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

你可能感兴趣的文章
反思JavaScript:论for循环的死亡
查看>>
Linux上GDM登录界面如何适应高分屏
查看>>
“网络小偷”猖獗横行 探秘信息数据黑产链
查看>>
抱大腿:智能硬件跟大厂的暧昧
查看>>
云计算服务或将迎来涨价潮
查看>>
思科找到新的业务:“影子 IT ”
查看>>
高通前高管加盟英特尔 薪酬逾2500万美元
查看>>
富士康同意接手诺基亚印度工厂 条件苛刻
查看>>
缺货笼罩供应链:智能手机“涨”声一片
查看>>
2Q16全球OTT/云服务商资本开支达170亿美元
查看>>
中概股回归难逆袭 陌陌私有化就遇到了失败风险
查看>>
AI与物联网结合可引发科技巨变
查看>>
补贴1500亿美元,国产芯片能否成功翻身?
查看>>
发改委将创新打造我国智能交通发展的新业态、新模式
查看>>
US-CERT:企业监听HTTPS可导致安全风险
查看>>
认知安全”是怎样一种安全?
查看>>
VMware第二季度净利2.65亿美元 盘后涨愈8%
查看>>
CNNVD有关火狐浏览器(Mozilla Firefox)漏洞情况的通报
查看>>
传感器市场需求巨大 2021年将达千亿市场
查看>>
全球车用MEMS传感器企业营收排行
查看>>