• icpc 2018 徐州 网络赛 B 博弈+记忆化搜索


    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-31−3 options, 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−1 .

    That is, if there are three options in a selection, the score will be increased by 11, decreased by 11, or multiplied by -1−1. The score before the selection is 88. 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 100100and 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 100100 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,ln,m,k,l(1le n le 10001≤n≤1000, -100 le m le 100−100≤m≤100 , -100 le l < k le 100−100≤l<k≤100 ), 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(age 0a≥0 , bge0b≥0 ,c=0c=0 or c=1c=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>0means 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 徐州赛区网络预赛

    #include<iostream>
    #include<cstring>
    #include<cmath>
    #include<cstdio>
    #include<cstdlib>
    #include<algorithm>
    const int p=1e9+7; 
    using namespace std;
    typedef long long LL;
    int f[2000][500],n,cur,l,r,a[2010],b[2010],c[2010];
    int dfs(int x,int cur)
    {
    if(f[x][cur+100]!=-1) return f[x][cur+100];	
    if(x>n)
    {
    	if(cur<r&&cur>l) return 2;
    	if(cur>=r) return 1;
    	if(cur<=l) return 0;
    }
        int flag1=-1,flag2=-1,flag3=-1;
    	if(a[x]!=0) flag1=dfs(x+1,min(cur+a[x],100));
    	if(b[x]!=0) flag2=dfs(x+1,max(cur-b[x],-100));
        if(c[x]!=0) flag3=dfs(x+1,-cur);
        if(x%2==1) 
        {
           if(flag1==1||flag2==1||flag3==1) 
    	   {
    	   f[x][cur+100]=1; 
    	   return 1;
           }
    	   if(flag1==2||flag2==2||flag3==2) 
    	   {
    	   f[x][cur+100]=2; 
    	   return 2;
           }
           f[x][cur+100]=0;
    	   return 0;
    	}
    	if(x%2==0) 
        {
           if(flag1==0||flag2==0||flag3==0) 
    	   {
    	   f[x][cur+100]=0; 
    	   return 0;
           }
    	   if(flag1==2||flag2==2||flag3==2) 
    	   {
    	   f[x][cur+100]=2; 
    	   return 2;
           }
           f[x][cur+100]=1;
    	   return 1;
    	}
    }  
    int main()
    {
    	scanf("%d%d%d%d",&n,&cur,&r,&l);
    	for(int i=1;i<=n + 1;i++)
    	   for(int j=0;j<=200;j++) f[i][j]=-1;
    	for(int i=1;i<=n;i++)
    	{
    		scanf("%d%d%d",&a[i],&b[i],&c[i]);
    	}
    	int ans=dfs(1,cur);
    	if(ans==1) printf("Good Ending
    ");
    	if(ans==2) printf("Normal Ending
    ");
    	if(ans==0) printf("Bad Ending
    ");
    }
  • 相关阅读:
    linux 修改环境变量 vi ~/.bashrc 出错解决办法,很有效
    大体学习框架
    完成spring boot整合ehcache的搭建以支持服务本地堆缓存
    Springboot隐藏某个字段@JSONField(serialize = false)不生效问题解决
    在库存服务中实现缓存与数据库双写一致性保障方案(二)
    restful api版本控制
    手机连接小爱同学音响
    商品详情页结构分析、缓存全量更新问题以及缓存维度化解决方案
    zk安装
    在库存服务中实现缓存与数据库双写一致性保障方案(四)
  • 原文地址:https://www.cnblogs.com/The-Pines-of-Star/p/9878818.html
Copyright © 2020-2023  润新知