POJ 2234 Matches Game(取火柴博弈1)

Posted

tags:

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

传送门

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

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int a,res=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a);
            res^=a;
        }
        if(!res)//T
            printf("No\n");
        else printf("Yes\n");
    }
    return 0;
}

以上是关于POJ 2234 Matches Game(取火柴博弈1)的主要内容,如果未能解决你的问题,请参考以下文章

POJ 2234 Matches Game 尼姆博弈

POJ2234 Matches Game 尼姆博弈 博弈论

题解——POJ 2234 Matches Game

[poj2234] Matches Game

poj 2234 Matches Game

POJ 2234 Matches Game(Nim博弈裸题)