1. 程式人生 > >ACM-ICPC 2018 徐州賽區網絡預賽 B. BE, GE or NE

ACM-ICPC 2018 徐州賽區網絡預賽 B. BE, GE or NE

tps init upper bee %d theme time some see

In a world where ordinary people cannot reach, a boy named "Koutarou" and a girl named "Sena" are playing a video game. The game system of this video game is quite unique: in the process of playing this game, you need to constantly face the choice, each time you choose the game will provide 1-3options, the player can only choose one of them. Each option has an effect on a "score" parameter in the game. Some options will increase the score, some options will reduce the score, and some options will change the score to a value multiplied by ?1 .

That is, if there are three options in a selection, the score will be increased by 1, decreased by 1, or multiplied by ?1. The score before the selection is 8. Then selecting option 11 will make the score become 99, and selecting option 22 will make the score 77 and select option 33 to make the score -8?8. Note that the score has an upper limit of 100100 and a lower limit of -100?100. If the score is 9999 at this time, an option that makes the score +2+2 is selected. After that, the score will change to 100 and vice versa .

After all the choices have been made, the score will affect the ending of the game. If the score is greater than or equal to a certain value kk, it will enter a good ending; if it is less than or equal to a certain value ll, it will enter the bad ending; if both conditions are not satisfied, it will enter the normal ending. Now, Koutarou and Sena want to play the good endings and the bad endings respectively. They refused to give up each other and finally decided to use the "one person to make a choice" way to play the game, Koutarou first choose. Now assume that they all know the initial score, the impact of each option, and the kk, ll values, and decide to choose in the way that works best for them. (That is, they will try their best to play the ending they want. If it‘s impossible, they would rather normal ending than the ending their rival wants.)

Koutarou and Sena are playing very happy, but I believe you have seen through the final ending. Now give you the initial score, the kk value, the ll value, and the effect of each option on the score. Can you answer the final ending of the game?

Input

The first line contains four integers n,m,k,l 10001n1000, ?100m100 ,100l<k100), represents the number of choices, the initial score, the minimum score required to enter a good ending, and the highest score required to enter a bad ending, respectively.

Each of the next nn lines contains three integers a,b,ca,b,c(a0 ,b0 ,c=0 or c=1),indicates the options that appear in this selection,in which a=0a=0 means there is no option to increase the score in this selection, a>0a>0 means there is an option in this selection to increase the score by aa ; b=0b=0 means there is no option to decrease the score in this selection, b>0b>0 means there is an option in this selection to decrease the score by bb; c=0c=0 means there is no option to multiply the score by -1?1 in this selection , c=1c=1 means there is exactly an option in this selection to multiply the score by -1?1. It is guaranteed that a,b,ca,b,c are not equal to 00 at the same time.

Output

One line contains the final ending of the game. If it will enter a good ending,print "Good Ending"(without quotes); if it will enter a bad ending,print "Bad Ending"(without quotes);otherwise print "Normal Ending"(without quotes).

樣例輸入1

3 -8 5 -5
3 1 1
2 0 1
0 2 1

樣例輸出1

Good Ending

樣例輸入2

3 0 10 3
0 0 1
0 10 1
0 2 1

樣例輸出2

Bad Ending

題目來源

ACM-ICPC 2018 徐州賽區網絡預賽

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstring>
 4 #include <cstdio>
 5 #include <vector>
 6 #include <queue>
 7 #include <stack>
 8 #include <cstdlib>
 9 #include <iomanip>
10 #include <cmath>
11 #include <cassert>
12 #include <ctime>
13 #include <map>
14 #include <set>
15 #include <vector>
16 using namespace std;
17 #define  ull unsigned  long  long 
18 #define ll  long  long 
19 #define  ph push_back
20 #define N 1120
21 int a[N],b[N],c[N];
22 int  n,m,l,r;
23 int cnt;
24 int dp[N][250];
25 map<int,int>id;
26 int dfs(int cnt,int now){
27     if(cnt>=n+1){
28         if(now>=r)  return 2;
29         if(now>l)  return 1;//>l
30         return 0;
31     }
32     if(dp[cnt][id[now]]!=-1)  return  dp[cnt][id[now]];
33     //a[cnt],b[cnt],c[cnt]不會同時為0
34     if(cnt&1){
35         int val=0;
36         if(a[cnt]) val=max(val,dfs(cnt+1,min(100,now+a[cnt])));
37         if(b[cnt]) val=max(val,dfs(cnt+1,max(-100,now-b[cnt])));
38         if(c[cnt]) val=max(val,dfs(cnt+1,-now) );//一定在-100 ~100
39         return  dp[cnt][id[now]]=val;
40     }
41     else{
42         int val=2;
43         if(a[cnt]) val=min(val,dfs(cnt+1,min(100,now+a[cnt])));
44         if(b[cnt]) val=min(val,dfs(cnt+1,max(-100,now-b[cnt])));
45         if(c[cnt]) val=min(val,dfs(cnt+1,-now) );
46         return  dp[cnt][id[now]]=val;
47     }    
48 }
49 int main()
50 {
51     for(int  i=0;i<N;i++)
52     {
53         for(int j=0;j<210;j++){
54             dp[i][j]=-1;//不可能是0 1 2 
55         }
56     }
57     for(int i=-100;i<=100;i++) id[i]=cnt++;
58     scanf("%d%d%d%d",&n,&m,&r,&l);
59     for(int  i=1;i<=n;i++) scanf("%d%d%d",&a[i],&b[i],&c[i]);
60     int val=dfs(1,m);
61     if(val==2) printf("Good Ending\n");
62     else if(val==0) printf("Bad Ending\n");
63     else{
64         printf("Normal Ending\n");
65     }
66     return 0;
67 }

ACM-ICPC 2018 徐州賽區網絡預賽 B. BE, GE or NE