码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1847sg函数

时间:2017-06-08 14:08:05      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:with   names   style   fine   end   comment   bsp   algorithm   sizeof   

刚开始因为没注意到f是从0开始的导致wa了几次,f遍历的时候从0到f【j】<=i

这个题只有一个子情况,求出sg值直接判断就好了

技术分享
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cassert>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define pi acos(-1)
#define ll long long
#define mod 1000000007
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#pragma comment(linker, "/STACK:1024000000,1024000000")

using namespace std;

const double g=10.0,eps=1e-9;
const int N=1000+10,maxn=111117,inf=11111;

int f[N],sg[N],Hash[N];
void getsg(int n)
{
    memset(sg,0,sizeof sg);
    for(int i=1;i<=n;i++)
    {
        memset(Hash,0,sizeof Hash);
        for(int j=0;f[j]<=i;j++)
            Hash[sg[i-f[j]]]=1;//后继状态的集合
        for(int j=0;j<=n;j++)//找最小的不属于该集合的非负整数
            if(Hash[j]==0)
            {
                sg[i]=j;
                break;
            }
    }
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    for(int i=0;i<=15;i++)f[i]=pow(2,i);
    getsg(1000);
    while(cin>>n){
        if(sg[n]!=0)cout<<"Kiki"<<endl;
        else cout<<"Cici"<<endl;
    }
    return 0;
}
View Code

 

hdu1847sg函数

标签:with   names   style   fine   end   comment   bsp   algorithm   sizeof   

原文地址:http://www.cnblogs.com/acjiumeng/p/6962243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!