Problem Solving report HDU1087 Super jumping! jumping! jumping!

Source: Internet
Author: User

Super jumping! jumping! jumping!

Time limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)


problem DescriptionNowadays, a kind of chess game called "Super jumping! jumping! Jumping! "is very popular in HDU. Maybe you is a good boy, and know little about the this game, so I introduce it to you now.



The game can be played by and more than the players. It consists of a chessboard (chessboard) and some chessmen (chess pieces), and all chessmen is marked by a positive integer or "start" or "End ”. The player starts from start-point and must jumps to end-point finally. In the course of jumping, the player would visit the chessmen in the path, but everyone must jumps from one Chessman to Ano Ther absolutely bigger (you can assume start-point are 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 can straightly get to end-point From Start-point. Of course you get the 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.

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

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

Sample Input3 1 3 24 1 2 3 44 3 3 2 10

Sample Output4103 Analysis: A classic DP problem this problem stipulates the beginning and the end of our position as a state to record this position before to its maximum data this problem is difficult to think of a position as the starting point of the state transfer equation: Dp[i]=max (dp[i],dp[j]+a[i]) AC code:
1#include <iostream>2#include <string>3 using namespacestd;4 intdp[1001],a[1001];5 intT;6 intMain ()7 {8      while(cin>>t&&t)9     {Ten          for(intI=1; i<=t;i++) One         { ACin>>A[i]; -dp[i]=A[i]; -         } the          for(intI=1; i<=t;i++) -         { -              for(intj=1; j<i;j++) -             { +                 if(a[i]>A[j]) -Dp[i]=max (dp[i],dp[j]+a[i]); +             } A         } at         intsum=0; -          for(intI=0; i<=t;i++) -sum=Max (sum,dp[i]); -cout<<sum<<Endl; -     } -     return 0; in}

Problem Solving report HDU1087 Super jumping! jumping! jumping!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.