zoukankan      html  css  js  c++  java
  • hdu 5724 Chess 博弈sg+状态压缩

    Chess

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)



    Problem Description
    Alice and Bob are playing a special chess game on an n × 20 chessboard. There are several chesses on the chessboard. They can move one chess in one turn. If there are no other chesses on the right adjacent block of the moved chess, move the chess to its right adjacent block. Otherwise, skip over these chesses and move to the right adjacent block of them. Two chesses can’t be placed at one block and no chess can be placed out of the chessboard. When someone can’t move any chess during his/her turn, he/she will lose the game. Alice always take the first turn. Both Alice and Bob will play the game with the best strategy. Alice wants to know if she can win the game.
     
    Input
    Multiple test cases.

    The first line contains an integer T(T100), indicates the number of test cases.

    For each test case, the first line contains a single integer n(n1000), the number of lines of chessboard.

    Then n lines, the first integer of ith line is m(m20), indicates the number of chesses on the ith line of the chessboard. Then m integers pj(1pj20)followed, the position of each chess.
     
    Output
    For each test case, output one line of “YES” if Alice can win the game, “NO” otherwise.
     
    Sample Input
    2 1 2 19 20 2 1 19 1 18
     
    Sample Output
    NO YES
     
    Author
    HIT
     
    Source
    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<string>
    #include<queue>
    #include<algorithm>
    #include<stack>
    #include<cstring>
    #include<vector>
    #include<list>
    #include<set>
    #include<map>
    using namespace std;
    #define LL __int64
    #define pi (4*atan(1.0))
    #define eps 1e-8
    #define bug(x)  cout<<"bug"<<x<<endl;
    const int N=3e6+10,M=1e6+10,inf=1e9+10;
    const LL INF=1e18+10,mod=1e9+7;
    
    int sg[N];
    int dfs(int n)
    {
        if(sg[n]!=-1)return sg[n];
        int flag[25],nex[25], mex[25];
        for(int i=0;i<24;i++)
            flag[i]=0,mex[i]=0,nex[i]=0;Q
        for(int i=0;i<21;i++)
        if(n&(1<<i))flag[i]=1;
        nex[21]=21;
        for(int i=20;i>=0;i--)
        if(!flag[i+1])nex[i]=i+1;
        else nex[i]=nex[i+1];
        for(int i=0;i<20;i++)
        {
            if(flag[i]&&nex[i]<20)
            {
                int z=n-(1<<i)+(1<<nex[i]);
                //cout<<z<<endl;
                dfs(z);
                mex[sg[z]]=1;
            }
        }
        for(int i=0;;i++)
            if(!mex[i])return sg[n]=i;
    }
    int main()
    {
    
        memset(sg,-1,sizeof(sg));
        int T;
        scanf("%d",&T);
        while(T--)
        {
            int n;
            scanf("%d",&n);
            int ans=0;
            for(int i=1;i<=n;i++)
            {
                int m,sum=0;
                scanf("%d",&m);
                for(int j=1;j<=m;j++)
                {
                    int x;
                    scanf("%d",&x);x--;
                    sum+=(1<<x);
                }
                ans^=dfs(sum);
            }
            if(ans)printf("YES
    ");
            else printf("NO
    ");
        }
        return 0;
    }
  • 相关阅读:
    mysql批量替换指定字符串
    php中英字符串截取
    比较两个JSON字符串是否完全相等
    Java FastJson 介绍
    线程池
    DBUS及常用接口介绍
    在Mac中如何正确地设置JAVA_HOME
    base64 原理
    sizeof与strlen的区别
    Kubernetes 部署失败的 10 个最普遍原因
  • 原文地址:https://www.cnblogs.com/jhz033/p/7396040.html
Copyright © 2011-2022 走看看