poj 2234 Matches Game

Posted Soda

tags:

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

Matches Game

 POJ - 2234 

nim游戏

#include<iostream>
#include<cstdio>
#define maxn 21
using namespace std;
int n;
int main(){
    while(scanf("%d",&n)!=EOF){
        int x,t=0;
        for(int i=1;i<=n;i++){
            scanf("%d",&x);
            t^=x;
        }
        if(t)puts("Yes");
        else puts("No");
    }
    return 0;
} 

 

以上是关于poj 2234 Matches Game的主要内容,如果未能解决你的问题,请参考以下文章

[poj2234] Matches Game

poj 2234 Matches Game

POJ 2234 Matches Game(Nim博弈裸题)

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

POJ 2234 Matches Game 尼姆博弈

POJ2234 Matches Game 尼姆博弈 博弈论