一道ACM题,为什么WA了,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 t

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/10 19:57:57

一道ACM题,为什么WA了,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 t
一道ACM题,为什么WA了,
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
#include
using namespace std;
typedef struct
{
long int max;
long int t;
}node;
int main()
{
long int n,i;
while(cin >> n&&n)
{
node a[1010];
a[0].max =0;
a[0].t=0;
for(i=1;i> a[i].t;
if(a[i].t > a[i-1].t)
{
a[i].max = a[i].t+a[i-1].max;
}
else if(a[i].t < a[i-1].t)
{
a[i].max = a[i].t;
}
else if(a[i].t = a[i-1].t)
{
a[i].max = a[i].t;
}
}
long int max=0;
for(i=1;i max)
max =a[i].max;
cout

一道ACM题,为什么WA了,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 t
#include
using namespace std;
typedef struct
{
long int max;
long int t;
}node;
int main()
{
long int n,i,j;
while(cin >> n&&n)
{
node a[1010];
a[0].max =0;
a[0].t=0;
for(i=1;i> a[i].t;
a[i].max = a[i].t;
for(j=i-1;j>=0;j--)
{
if(a[j].t < a[i].t && a[j].max + a[i].t > a[i].max)
{
a[i].max = a[j].max + a[i].t;
}
}
}
long int max=0;
for(i=1;i max)
max =a[i].max;
cout

一道ACM题,为什么WA了,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 t ACM的一道题,看着很简单,提交却WA了,More than FibonacciTime Limit:1000msMemory Limit:65536kbDescriptionThe New Fibonacci numbers (0,1,2,3,6,11,20,37,68,...) are defined by the recurrence:F(0) = 0; F(1) = 1; F(2) = 2; F(n) = F(n-1) + F(n-2) Hdu上的一道题1058,一直WA呀,为什么#include#define min(a,b) a 高手来帮我把这道acm的水题的我的代码找下错试过很多组数据 也都是正确的 可是提交的时候就是显示WA了 ACM PKU 1002题总是WA各种测试数据都试过了 没有发现问题 可是C++提交上去 又是WA#include #include #include #include using namespace::std;string directory[100];string result[100];int len = 0;int resLen = 0;int isaTel(string &tel 做acm看到的ac、wa是什么的缩写? ACM的一道题,但是数字大了,过不了!.2的64次方应该用什么类型保存! ACM竞赛中谈到AC了题, 一道acm的排序题Snow_storm有n(0 为什么WA<WB? 一道杭电ACM的测试题,我运行的没问题,但是提交却是WA,Problem DescriptionJack and Jill have decided to sell some of their Compact Discs,while they still have some value.They have decided to sell one of each of the CD titles that they c语言acm题 acm刷题是什么意思 阶乘所得结果的位数怎么算?这是一道acm编程题. acm的一道c语言问题 一道SAT语法题wa nu assured the worried members of her group that they would finish the project on time.为什么不能写成wa nu assured that the project would be finished on tiem to the worried numbers of her group? 求一道初三数学几何题第二问改了 当∠ACM=30°时 求MN长度 只要这一问的过程 谢谢了 在线急等~跪求 谢谢了 求数论知识 怎么算(a/b)%c 比如说:对于一个给定的正整数n求另一个正整数 满足m>=((6^n-1)/30)%2011其实是一道acm题 公式推出来是这样 不知道怎么破了http://acm.hdu.edu.cn/showproblem.php?pid=4599