码迷,mamicode.com
首页 > 其他好文 > 详细

题解——POJ 2234 Matches Game

时间:2018-09-01 15:59:00      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:游戏   \n   amp   include   ring   一个   nim   else   lse   

这道题也是一个博弈论

根据一个性质

对于\( 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\n");
    else
      printf("No\n");
  }
  return 0;
}

 

题解——POJ 2234 Matches Game

标签:游戏   \n   amp   include   ring   一个   nim   else   lse   

原文地址:https://www.cnblogs.com/dreagonm/p/9570561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!