HDU 2509 Be the Winner(取火柴博弈2)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2509 Be the Winner(取火柴博弈2)相关的知识,希望对你有一定的参考价值。

传送门

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int a,res=0;
        int c=0,g=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a);
            if(a>=2) c++;
            else if(a==1) g++;
            res^=a;
        }
        if(!res)
        {
            if(c>=2)//T2
                printf("No\n");
            else if(c==0)
                printf("Yes\n");
        }
        else//S
        {
            if(g&1&&c==0)//S0
                printf("No\n");
            else if(c==1||c>=2)//S1,S2
                printf("Yes\n");
        }
    }
    return 0;
}

以上是关于HDU 2509 Be the Winner(取火柴博弈2)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2509 Be the Winner(取火柴博弈2)

Hdoj 2509 Be the Winner

HDU Be the Winner [Anti-SG]

codeforces 782B The Meeting Place Cannot Be Changed+hdu 4355+hdu 2438 (三分)

HDU 5754 Life Winner Bo 组合博弈

486. Predict the Winner