Anti-nim博弈 John poj3480
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Anti-nim博弈 John poj3480相关的知识,希望对你有一定的参考价值。
传送门:点击打开链接
题意:和nim游戏一样,只不过取最后一个石子的人输。
思路:有一个SJ定理,是专门用来求Anti-nim游戏的,如下
SJ定理
SG函数的求法一模一样,最后如果只有一堆,也能用SJ定理
如果为Anti-Nim游戏,如下情况先手胜
SG异或和为0,且单个游戏的SG全部<=1
SG异或不为0,且存在单个游戏的SG>1,即<=1的个数不等于独立游戏个数
#include<map>
#include<set>
#include<cmath>
#include<ctime>
#include<stack>
#include<queue>
#include<cstdio>
#include<cctype>
#include<string>
#include<vector>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
#define fuck(x) cout<<"["<<x<<"]"
#define FIN freopen("input.txt","r",stdin)
#define FOUT freopen("output.txt","w+",stdout)
using namespace std;
typedef long long LL;
const int MX = 100 + 5;
int A[MX];
/*
SJ定理
SG函数的求法一模一样,最后如果只有一堆,也能用SJ定理
如果为Anti-Nim游戏,如下情况先手胜
SG异或和为0,且单个游戏的SG全部<=1
SG异或不为0,且存在单个游戏的SG>1,即<=1的个数不等于独立游戏个数
*/
int main()
int T, n;
scanf("%d", &T);
while(T--)
scanf("%d", &n);
int sum = 0, cnt = 0;
for(int i = 1; i <= n; i++)
scanf("%d", &A[i]);
sum ^= A[i];
cnt += (A[i] <= 1);
if(sum == 0 && cnt == n) printf("John\\n");
else if(sum != 0 && cnt != n) printf("John\\n");
else printf("Brother\\n");
return 0;
以上是关于Anti-nim博弈 John poj3480的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ.1022.[SHOI2008]小约翰的游戏John(博弈论 Anti-Nim)
51nod 1069 Nim游戏 + BZOJ 1022: [SHOI2008]小约翰的游戏John(Nim游戏和Anti-Nim游戏)