博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1087 Super Jumping....(动态规划之最大递增子序列和)
阅读量:6046 次
发布时间:2019-06-20

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

Problem Description
Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this game, so I introduce it to you now.
The game can be played by two or more than two players. It consists of a chessboard(棋盘)and some chessmen(棋子), and all chessmen are marked by a positive integer or “start” or “end”. The player starts from start-point and must jumps into end-point finally. In the course of jumping, the player will visit the chessmen in the path, but everyone must jumps from one chessman to another absolutely bigger (you can assume start-point is a minimum and end-point is a maximum.). And all players cannot go backwards. One jumping can go from a chessman to next, also can go across many chessmen, and even you can straightly get to end-point from start-point. Of course you get zero point in this situation. A player is a winner if and only if he can get a bigger score according to his jumping solution. Note that your score comes from the sum of value on the chessmen in you jumping path.
Your task is to output the maximum value according to the given chessmen list.
 

 

Input
Input contains multiple test cases. Each test case is described in a line as follow:
N value_1 value_2 …value_N 
It is guarantied that N is not more than 1000 and all value_i are in the range of 32-int.
A test case starting with 0 terminates the input and this test case is not to be processed.
 

 

Output
For each case, print the maximum according to rules, and one line one case.
 

 

Sample Input
3 1 3 2
4 1 2 3 4
4 3 3 2 1
0
 

 

Sample Output
4
10
3
 
题目大意:给定一个序列包含n个数,求出最大子序列和
思路:对每一个数,我们可以和它之前的所有数比较,若当前数大于前面的数的时候有状态转移方程:dp[i] = max(dp[i],dp[j]+a[i]);//其中j为前面那个数,i为当前的数,a[i]为第i个位置上的数,最后取所有dp[]中的最大值即可
1 #include
2 #include
3 #include
4 5 using namespace std; 6 typedef long long LL; 7 const int maxn = 1010; 8 LL n, a[maxn], dp[maxn]; 9 int main()10 {11 ios::sync_with_stdio(false);12 while (cin >> n && n) {13 memset(a, 0, sizeof(a));14 memset(dp, 0, sizeof(dp));15 for (int i = 1; i <= n; i++)cin >> a[i], dp[i] = a[i];16 for (int i = 2; i <= n; i++)17 for (int j = 1; j < i; j++)18 if (a[i] > a[j])19 dp[i] = max(dp[i], dp[j] + a[i]);20 LL ans = 0;21 for (int i = 1; i <= n; i++)ans = max(ans, dp[i]);22 cout << ans << endl;23 }24 return 0;25 }
View Code

 

转载于:https://www.cnblogs.com/wangrunhu/p/9520532.html

你可能感兴趣的文章
管理维护Replica Sets
查看>>
asp.net core 系列 3 依赖注入服务
查看>>
HashMap 和 HashTable区别
查看>>
git 格式化输出版本信息
查看>>
js 防止重复提交表单
查看>>
日期工具类 DateTools
查看>>
数据结构5.4_m元多项式的表示
查看>>
14. Longest Common Prefix
查看>>
Servlet页面登录的数据库验证程序(一)
查看>>
使用Promise 解决回调地狱
查看>>
rem简单实现移动端适配
查看>>
ios中利用委托在二个视图间传值
查看>>
iOS融云使用原理篇
查看>>
第六章
查看>>
golang+es 爬取网易云音乐评论
查看>>
Math Constants
查看>>
Ajax.BeginForm的异步提交数据 简介
查看>>
Oracle 11g不能导出空表的三种解决方法
查看>>
Wordpress 文章添加副标题
查看>>
21 段实用便捷的 PHP 代码
查看>>