BZOJ 1982: [Spoj 2021]Moving Pebbles [博弈论 对称]
Posted Candy?
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1982: [Spoj 2021]Moving Pebbles [博弈论 对称]相关的知识,希望对你有一定的参考价值。
给你N堆Stone,两个人玩游戏. 每次任选一堆,首先拿掉至少一个石头,然后移动任意个石子到任意堆中. 谁不能移动了,谁就输了...
以前在poj做过已经忘记了...
构造对称,选最多的一堆往其他堆分构造对称局面,先手必胜
一开始就对称,先手必败
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> using namespace std; typedef long long ll; const int N=1e5+5; inline int read(){ char c=getchar();int x=0,f=1; while(c<‘0‘||c>‘9‘){if(c==‘-‘)f=-1;c=getchar();} while(c>=‘0‘&&c<=‘9‘){x=x*10+c-‘0‘;c=getchar();} return x*f; } int n,a[N]; int main(){ n=read(); if(n&1) puts("first player"); else{ for(int i=1;i<=n;i++) a[i]=read(); sort(a+1,a+1+n); int flag=0; for(int i=2;i<=n;i+=2) if(a[i]!=a[i-1]) {flag=1;break;} puts(flag ? "first player" : "second player"); } }
以上是关于BZOJ 1982: [Spoj 2021]Moving Pebbles [博弈论 对称]的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ 1982: [Spoj 2021]Moving Pebbles [博弈论 对称]
BZOJ2226[Spoj 5971] LCMSum 莫比乌斯反演(欧拉函数?)