题解——POJ 2234 Matches Game

Posted dreagonm

tags:

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

这道题也是一个博弈论

根据一个性质

对于( Nim )游戏,即双方可以任取石子的游戏,( SG(x) = x )

所以直接读入后异或起来输出就好了

代码

#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int m;
int main(){
  while(scanf("%d",&m)!=EOF){
    int ans=0,mid;
    for(int i=1;i<=m;i++){
      scanf("%d",&mid);
      ans^=mid;
    }
    if(ans)
      printf("Yes
");
    else
      printf("No
");
  }
  return 0;
}

 

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

poj 2234 Matches Game

poj2234 Matches Game

POJ 2234 Matches Game(Nim博弈裸题)

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

POJ 2234 Matches Game 尼姆博弈

POJ2234 Matches Game 尼姆博弈 博弈论