博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1087(dp)
阅读量:4476 次
发布时间:2019-06-08

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

Super Jumping! Jumping! Jumping!

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

Total Submission(s): 34286    Accepted Submission(s): 15555

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
 

 最长上升子序列,数据小,n2做法

1 //2016.10.7 2 #include 
3 #include
4 #include
5 #include
6 7 using namespace std; 8 const int N = 1005; 9 long long arr[N], dp[N];10 11 int main()12 {13 int n;14 long long ans;15 while(scanf("%d", &n)!=EOF && n)16 {17 ans = 0;18 for(int i = 0; i < n; i++)19 scanf("%lld", &arr[i]);20 memset(dp, 0, sizeof(dp));21 for(int i = 0; i < n; i++)22 {23 dp[i] = arr[i];24 for(int j = 0; j < i; j++)25 if(arr[i] > arr[j])26 dp[i] = max(dp[i], dp[j]+arr[i]);//状态转移方程27 ans = max(ans, dp[i]);28 }29 printf("%lld\n", ans);30 }31 32 return 0;33 }

 

转载于:https://www.cnblogs.com/Penn000/p/5936936.html

你可能感兴趣的文章
flashcache mysql_flashcache的实现与分析
查看>>
linux shell 里面执行python 程序_Linux下编写脚本Shell和Python的区别?
查看>>
python中if elif语句优化_python – 最有效的方式做一个if-elif-elif-else语句当else做的最多?...
查看>>
win10 配置 maven_home 一会儿成功一会儿失败_在macbook上运行移动硬盘里的win10和macos...
查看>>
python怎么画多重饼状图_Python通过matplotlib画双层饼图及环形图简单示例
查看>>
棋盘最短路径 python_Dijkstra 最短路径算法 Python 实现
查看>>
eclipse配置mysql教程_在Eclipse连接mysql-----配置jbdc_MySQL
查看>>
java map合并_java 实现合并map示例Demo1
查看>>
java 8 string_String.join() --Java8中String类新增方法
查看>>
java 布局教程_java布局学习(新)
查看>>
Random Access Iterator
查看>>
Harry And Dig Machine
查看>>
Cake Robbery
查看>>
Magician
查看>>
GT and set
查看>>
苹果曼和树
查看>>
你真的会写Java吗?
查看>>
alibaba.fastjson.JSONObject 解析
查看>>
终于有人把Elasticsearch原理讲透了
查看>>
Java使用POI 读取和写入Excel指南
查看>>