POJ 3480 John(SJ定理博弈)题解

Posted kirinsb

tags:

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

题意:n堆石头,拿走最后一块的输

思路:SJ定理:先手必胜当且仅当:(1)游戏的SG函数不为0且游戏中某个单一游戏的SG函数大于1;(2)游戏的SG函数为0且游戏中没有单一游戏的SG函数大于1。

参考:【博弈】Anti,Multi,Every-SG

代码:

#include<set>
#include<map>
#include<stack>
#include<cmath>
#include<queue>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
typedef long long ll;
const int maxn = 4747 + 10;
const int seed = 131;
const ll MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;
using namespace std;
int main(){
    int T, n;
    scanf("%d", &T);
    while(T--){
        scanf("%d", &n);
        int ans = 0, flag = 0, u;
        while(n--){
            scanf("%d", &u);
            ans ^= u;
            if(u > 1) flag = 1;
        }
        if(ans){
            if(flag) printf("John
");
            else printf("Brother
");
        }
        else{
            if(flag) printf("Brother
");
            else printf("John
");
        }
    }
    return 0;
}

 

以上是关于POJ 3480 John(SJ定理博弈)题解的主要内容,如果未能解决你的问题,请参考以下文章

poj3480--John

博弈论进阶之Anti-SG游戏与SJ定理

[您有新的未分配科技点]博弈论进阶:似乎不那么恐惧了…… (SJ定理,简单的基础模型)

博弈论题表(好少~~~)

BZOJ1022 [SHOI2008]小约翰的游戏John (博弈论)

HDU 3590 PP and QQ (博弈-Anti-SG游戏,SJ定理,树上删边游戏)