P2197 模板nim 游戏
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P2197 模板nim 游戏相关的知识,希望对你有一定的参考价值。
https://www.luogu.com.cn/problem/P2197
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int a[N],n;
int main(void)
{
int t; cin>>t;
while(t--)
{
cin>>n;
for(int i=0;i<n;i++) cin>>a[i];
int ans=0;
for(int i=0;i<n;i++) ans^=a[i];
if(ans) puts("Yes");
else puts("No");
}
return 0;
}
以上是关于P2197 模板nim 游戏的主要内容,如果未能解决你的问题,请参考以下文章
ybtoj 博弈论课堂过关luogu P1247luogu P2197模板nim 游戏 & 取火柴游戏 &例题1取火柴游戏