HDU - 2147 博弈 P/N分析

Posted The Azure Arbitrator

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU - 2147 博弈 P/N分析相关的知识,希望对你有一定的参考价值。

结论题,很显然和奇偶有关
PS.尝试用dfs写出PN表写崩了

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<string>
#include<vector>
#include<stack>
#include<queue>
#include<set>
#include<map>
#define rep(i,j,k) for(register int i=j;i<=k;i++)
#define rrep(i,j,k) for(register int i=j;i>=k;i--)
#define erep(i,u) for(register int i=head[u];~i;i=nxt[i])
#define iin(a) scanf("%d",&a)
#define lin(a) scanf("%lld",&a)
#define din(a) scanf("%lf",&a)
#define s0(a) scanf("%s",a)
#define s1(a) scanf("%s",a+1)
#define print(a) printf("%lld",(ll)a)
#define enter putchar(‘\n‘)
#define blank putchar(‘ ‘)
#define println(a) printf("%lld\n",(ll)a)
#define IOS ios::sync_with_stdio(0)
using namespace std;
const int maxn = 2e3+11;
const int oo = 0x3f3f3f3f;
const double eps = 1e-7;
typedef long long ll;
ll read(){
    ll x=0,f=1;register char ch=getchar();
    while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}
    while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}
    return x*f;
}
int n,r,c;
int main(){
    while(cin>>r>>c){
        if(r==0&&c==0)break;
        if(min(r%2,c%2)==0) cout<<"Wonderful!"<<endl;
        else cout<<"What a pity!"<<endl;
    }
    return 0;
}

以上是关于HDU - 2147 博弈 P/N分析的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2147 P/N博弈

HDU 2147--HDU 2147(博弈)--我可能做了假题。。。

HDU 2147 kiki's game(规律,博弈)

hdu2147 kiki&#39;s game(博弈)

HDU-2147 kiki‘s game

hdu 2147 kiki's game