首页 > 代码库 > HDU4972:A simple dynamic programming problem
HDU4972:A simple dynamic programming problem
Problem Description
Dragon is watching NBA. He loves James and Miami Heat.
Here‘s an introduction of basketball game:http://en.wikipedia.org/wiki/Basketball. However the game in Dragon‘s version is much easier:
"There‘s two teams fight for the winner. The only way to gain scores is to throw the basketball into the basket. Each time after throwing into the basket, the score gained by the team is 1, 2 or 3. However due to the uncertain factors in the game, it’s hard to predict which team will get the next goal".
Dragon is a crazy fan of Miami Heat so that after each throw, he will write down the difference between two team‘s score regardless of which team keeping ahead. For example, if Heat‘s score is 15 and the opposite team‘s score is 20, Dragon will write down 5. On the contrary, if Heat has 20 points and the opposite team has 15 points, Dragon will still write down 5.
Several days after the game, Dragon finds out the paper with his record, but he forgets the result of the game. It‘s also fun to look though the differences without knowing who lead the game, for there are so many uncertain! Dragon loves uncertain, and he wants to know how many results could the game has gone?
Here‘s an introduction of basketball game:http://en.wikipedia.org/wiki/Basketball. However the game in Dragon‘s version is much easier:
"There‘s two teams fight for the winner. The only way to gain scores is to throw the basketball into the basket. Each time after throwing into the basket, the score gained by the team is 1, 2 or 3. However due to the uncertain factors in the game, it’s hard to predict which team will get the next goal".
Dragon is a crazy fan of Miami Heat so that after each throw, he will write down the difference between two team‘s score regardless of which team keeping ahead. For example, if Heat‘s score is 15 and the opposite team‘s score is 20, Dragon will write down 5. On the contrary, if Heat has 20 points and the opposite team has 15 points, Dragon will still write down 5.
Several days after the game, Dragon finds out the paper with his record, but he forgets the result of the game. It‘s also fun to look though the differences without knowing who lead the game, for there are so many uncertain! Dragon loves uncertain, and he wants to know how many results could the game has gone?
Input
The first line of input contains only one integer T, the number of test cases. Following T blocks, each block describe one test case.
For each test case, the first line contains only one integer N(N<=100000), which means the number of records on the paper. Then there comes a line with N integers (a1, a2, a3, ... , an). ai means the number of i-th record.
For each test case, the first line contains only one integer N(N<=100000), which means the number of records on the paper. Then there comes a line with N integers (a1, a2, a3, ... , an). ai means the number of i-th record.
Output
Each output should occupy one line. Each line should start with "Case #i: ", with i implying the case number. Then for each case just puts an integer, implying the number of result could the game has gone.
Sample Input
2 2 2 3 4 1 3 5 7
Sample Output
Case #1: 2 Case #2: 2#include<cstdio> #include<algorithm> using namespace std; #define s(a) scanf("%d",&a) int t,c=1,n,a[100005],i,flag,ans; main() { s(t); while(t--) { s(n); for(i=0,flag=1,ans=2; i<n; i++) s(a[i]); if(a[0]>3||a[0]==0) flag=0; if(flag) { for(i=1; i<n; i++) { if(a[i]-a[i-1]>3||a[i-1]-a[i]>3||(a[i]==a[i-1]&&a[i]!=1)) { flag=0; break; } if((a[i]==2&&a[i-1]==1)||(a[i]==1&&a[i-1]==2)) ans+=2; } if(a[n-1]==0) ans/=2; } printf("Case #%d: %d\n",c++,flag?ans:0); } }
HDU4972:A simple dynamic programming problem
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。