1. 程式人生 > >POJ 3480 John(SJ定理博弈)題解

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

space href tac algo 遊戲 htm 石頭 tar 大於

題意: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\n"); else printf("Brother\n"); } else{ if(flag) printf("Brother\n");
else printf("John\n"); } } return 0; }

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