Super jumping! jumping! jumping!Time
limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)
Total submission (s): 32069 Accepted Submission (s): 14436
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, print the maximum according to rules, and one line one case.
Sample Input
3 1 3 24 1 2 3 44 3 3 2 10
Sample Output
4103
Authorlcy
#include <stdio.h> #include <string.h>int main () { int i,s[1000],a[1000],n,j; while (scanf ("%d", &n) &&n) { memset (s,0,sizeof (s)); for (i=0;i<n;i++) scanf ("%d", &a[i]); for (i=0;i<n;i++) { int flag=0; for (j=i-1;j>=0;j--) if (A[i]>a[j]&&flag<s[j]) flag=s[j];//comparison and size S[i]=a[i]+flag ;//plus a[i] smaller than a[i] value one of the largest and } int max=s[0]; for (i=1;i<n;i++) if (Max<s[i]) max=s[i]; printf ("%d\n", Max); } return 0;}
HDU 1087 Super jumping! jumping! jumping!