POJ2975 Nim 博弈论 尼姆博弈

Posted 鲸头鹳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ2975 Nim 博弈论 尼姆博弈相关的知识,希望对你有一定的参考价值。

http://poj.org/problem?id=2975

 

题目始终是ac的最大阻碍。

问只取一堆有多少方案可以使当前局面为先手必败。

显然由尼姆博弈的性质可以知道需要取石子使所有堆石子数异或和为0,那么将某一堆a个石子变为a^异或和即可。

a1^a2^a3^...^an=y;

a1^a2^a3^...^an^y=0;

技术分享图片
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<cmath>
 5 #include<iostream>
 6 #include<map>
 7 using namespace std;
 8 int m;
 9 int a[1010]={};
10 int main(){
11     while(~scanf("%d",&m)){
12         if(m==0)break;
13         int x,z=0,y=0;
14         for(int i=1;i<=m;i++){
15             scanf("%d",&x);
16             y^=x;
17             a[i]=x;
18         }
19         if(y){
20             for(int i=1;i<=m;i++){
21                 if((y^a[i])<a[i]){
22                     z++;
23                 }
24             }
25             printf("%d\n",z);
26         }
27         else{
28             printf("%d\n",0);
29         }
30     }
31     return 0;
32 }
View Code

 

以上是关于POJ2975 Nim 博弈论 尼姆博弈的主要内容,如果未能解决你的问题,请参考以下文章

poj 2975 Nim(博弈)

[poj2975]Nim_博弈论

poj2975 Nim(经典博弈)

POJ 2975 Nim(博弈)题解

[hdu-5795]A Simple Nim 博弈 尼姆博弈 SG函数打表找规律

反Nim博弈