51nod_1714:B君的游戏(博弈 sg打表)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod_1714:B君的游戏(博弈 sg打表)相关的知识,希望对你有一定的参考价值。

题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1714

nim游戏的一个变形,需要打出sg函数的表

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

const int maxn=70000000;
int sg[65], maxs;
int vis[maxn];

//yu控制递归层数,cur控制所分配最大值,next控制所分配最小值 
void dfs(int cur, int yu, int ans, int next)
{
    if(yu==0)
    {
        vis[ans]=1;
        return ;
    }
    for(int i=next; i<cur; i++)
        dfs(cur, yu-1, ans^sg[i], i);
}
void init()
{
    sg[0]=0;
    for(int i=1;i<=64; i++)
    {
        memset(vis,0,sizeof(vis));
        dfs(i, 7, 0, 0);
        for(int j=0;;j++)
            if(!vis[j])
            {
                sg[i]=j;
                break;
            }
        printf("%d\n", sg[i]);
    }
}
void print(int n)
{
    for(int i=31;i>=0;i--)
    {
        if((n>>i)&1) cout<<1;
        else cout<<0;
    }
    cout<<endl;
}

int main()
{
    init();
    for(int i=0;i<65;i++)
        print(sg[i]);
}
//Process exited after 232.7 seconds with return value 0 
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long uLL;

int sg[] = {0, 1, 2, 4, 8, 16, 32, 64, 128, 255, 256, 512,
            1024, 2048, 3855, 4096, 8192, 13107, 16384, 21845,
            27306, 32768, 38506, 65536, 71576, 92115, 101470,
            131072, 138406, 172589, 240014, 262144, 272069,
            380556, 524288, 536169, 679601, 847140, 1048576,
            1072054, 1258879, 1397519, 2005450, 2097152, 2121415,
            2496892, 2738813, 3993667, 4194304, 4241896, 4617503,
            5821704, 7559873, 8388608, 8439273, 8861366, 11119275,
            11973252, 13280789, 16777216, 16844349, 17102035,
            19984054, 21979742, 23734709
           };
           
int cal(uLL x)
{
    int ret=0;
    for(int i=0;i<64;i++)
        if((x>>i)&1) ret++;
    return ret;
}
int main()
{
    int n;
    while(cin>>n)
    {
        int ans=0;
        while(n--)
        {
            uLL t;
            cin>>t;
            ans ^= sg[cal(t)];
        }
        if(ans) puts("B");
        else puts("L");
    }
}

 

以上是关于51nod_1714:B君的游戏(博弈 sg打表)的主要内容,如果未能解决你的问题,请参考以下文章

51nod_1831: 小C的游戏(Bash博弈 找规律)

51NOD 算法马拉松15(脱欧专场) B君的游戏(博弈)

51 nod1067 Bash游戏 V2(sg函数打表)

51nod 1831 小C的游戏(博弈论+打表)

51 Nod 1067 博弈 SG函数

Nowcoder 挑战赛23 B 游戏 ( NIM博弈SG函数打表 )