博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu-1024 Max Sum Plus Plus
阅读量:5361 次
发布时间:2019-06-15

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

Max Sum Plus Plus

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

Total Submission(s): 30478    Accepted Submission(s): 10750

Problem Description
Now I think you have got an AC in Ignatius.L's "Max Sum" problem. To be a brave ACMer, we always challenge ourselves to more difficult problems. Now you are faced with a more difficult problem.
Given a consecutive number sequence S
1, S
2, S
3, S
4 ... S
x, ... S
n (1 ≤ x ≤ n ≤ 1,000,000, -32768 ≤ S
x ≤ 32767). We define a function sum(i, j) = S
i + ... + S
j (1 ≤ i ≤ j ≤ n).
Now given an integer m (m > 0), your task is to find m pairs of i and j which make sum(i
1, j
1) + sum(i
2, j
2) + sum(i
3, j
3) + ... + sum(i
m, j
m) maximal (i
x ≤ i
y ≤ j
x or i
x ≤ j
y ≤ j
x is not allowed).
But I`m lazy, I don't want to write a special-judge module, so you don't have to output m pairs of i and j, just output the maximal summation of sum(i
x, j
x)(1 ≤ x ≤ m) instead. ^_^
 

 

Input
Each test case will begin with two integers m and n, followed by n integers S
1, S
2, S
3 ... S
n.
Process to the end of file.
 

 

Output
Output the maximal summation described above in one line.
 

 

Sample Input
1 3 1 2 3 2 6 -1 4 -2 3 -2 3
 

 

Sample Output
6 8
 
这题的题意:
设输入的数组为a[1...n],从中找出m个段,使者几个段的和为最大;
 
 
dp[i][j]表示前j个数中取i个段的和的最大值,其中最后一个段
包含a[j]。
dp[i][j]=max(dp[i][j-1],dp[i-1][k])+a[j], 前一个表示j与j-1在i组里,后一个表示j单独成组。 这个代码会爆内存。
#include
#include
#include
#include
using namespace std;int dp[1000][1000];int main(){ int n,m; int a[100000]; while(cin>>n>>m) { for(int i=0;i
>a[i]; memset(dp,0,sizeof dp); for(int i=1;i<=n;i++) { for(int j=0;j

n 1,000,000,m不知道,开一个2维dp数组会炸内存。

那么我们用 一个滚动数组去更新

因为

dp[i][j]=max(dp[i][j-1],dp[i-1][k])+a[j], 第i个区间之和i-1一个有关 那么dp[t][j]=max(dp[t][j-1],dp[1-t][k])+a[j];
#include
using namespace std;int dp[2][100000];int main(){ int n,m; int a[100000]; while(cin>>n>>m) { for(int i=0;i
>a[i]; memset(dp,0,sizeof dp); int t; for(int i=1;i<=n;i++) { t=i%2; for(int j=0;j

你以为换完滚动数组就好了吗。不纯在的。超时

现在这个算法是n的3次方

那我们就要想用快一点的

考虑我们不需要j-1之前的最大和具体发生在k位置,只需要在j-1处记录最大和即可用pre[j-1]记录即可

pre[j-1],不包括a[j-1]的j-1之前的最大和

则dp[t][j]=max(dp[t][j-1],pre[j-1])+a[j]

此时可以看见,t这一维也可以去掉了

即最终的状态转移为

dp[j]=max(dp[j-1],pre[j-1])+a[j];

#include
#include
#include
#include
using namespace std;int dp[100005];int pre[100005];int main(){ int n,m; int a[100005]; while(~scanf("%d%d",&n,&m)) { for(int i=1;i<=m;i++) scanf("%d",&a[i]); memset(dp,0,sizeof dp); memset(pre,0,sizeof pre); int mx; for(int i=1;i<=n;i++) { mx=-999999999; for(int j=i;j<=m;j++) { dp[j]=max(dp[j-1],pre[j-1])+a[j]; pre[j-1]=mx; mx=max(mx,dp[j]); } } printf("%d\n",mx); } return 0;}

 

转载于:https://www.cnblogs.com/2014slx/p/7301977.html

你可能感兴趣的文章
第四周作业
查看>>
20151121
查看>>
线段重叠 (思维好题)
查看>>
Codeforces Round #413 C. Fountains (线段树的创建、查询、更新)
查看>>
SBuild 0.1.5 发布,基于 Scala 的构建系统
查看>>
WordPress 3.5 RC3 发布
查看>>
DOM扩展札记
查看>>
python中的None
查看>>
Shiro权限框架使用总结
查看>>
Windows Azure 上传 VM
查看>>
SharePoint Framework 在web部件中使用第三方样式 - 将第三方样式打到包中
查看>>
阿里云OSS上传文件本地调试跨域问题解决
查看>>
python的安装和配置环境变量
查看>>
PHP -- 图像处理
查看>>
Ubuntu 16.04修复PDF默认使用ImageMagick打开无法设置其它默认的问题(默认打开程序设置)...
查看>>
Mac的brew和brew cask区别以及安装brew cask
查看>>
归并排序与堆排序
查看>>
linux系统学习方法分享
查看>>
关于读书的一些方法--摘自李笑来《人人都能用英语》
查看>>
python操作Redis
查看>>