hdu1847 SG函数构造

     仅有一堆的S-NIM游戏,求出SG(x),0必败,非0必胜。另外这题DP也可以做,根据方案数从小到大递推上去就行了。

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
typedef long long ll;
int s[100];
int f[2200];
int n,m,k;
int mex(int p)
{
    int g[100];
    int t;
    memset(g,0,sizeof g);
    for (int i=0; s[i]<=p; i++)
    {
        t=p-s[i];
        if (t<0) break;
        if (f[t]==-1) f[t]=mex(t);
        g[f[t]]=true;
    }
    for (int i=0;; i++)
    if (!g[i]) return i;
}
int main()
{
    memset(s,0,sizeof s);
    s[0]=1;
    for (int i=1; i<=20; i++)
    s[i]=(s[i-1]<<1);
    while(cin>>n)
    {
        memset(f,-1,sizeof f);
        f[n]=mex(n);
        if (!f[n]) puts("Cici");
        else puts("Kiki");
    }
    return 0;
}


     

      

你可能感兴趣的:(hdu1847 SG函数构造)