题解说的很详细,我来讲讲我对为什么要用异或判断的想法
异或为零是先手必败状态的一个属性,我们通过属性来判断类别。
代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int ans=0;
for(int i=1;i<=n;i++)
{
int x;
cin>>x;
ans^=x;
}
if(ans)puts("Yes");
else puts("No");
}
return 0;
}
标签:puts,P2197,Nim,int,异或,ans,模板
From: https://www.cnblogs.com/pure4knowledge/p/17917591.html