标签:
Description
Input
Output
Sample Input
2 45 45
3 3 6 9
Sample Output
No
Yes
Nim模型,操作规则一点改动都没有。
直接异或。
1 #include<cstdio> 2 3 int main() 4 { 5 int m; 6 while(scanf("%d",&m)!=EOF) 7 { 8 int temp; 9 int ans=0; 10 11 for(int i=0;i<m;i++) 12 { 13 scanf("%d",&temp); 14 ans^=temp; 15 } 16 if(ans) 17 printf("Yes\n"); 18 else 19 printf("No\n"); 20 } 21 22 return 0; 23 }
POJ 2234 Matches Game 博弈论水题 Nim模型
标签:
原文地址:http://www.cnblogs.com/-maybe/p/4510919.html