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

【博弈论】【SG函数】【找规律】Divide by Zero 2017 and Codeforces Round #399 (Div. 1 + Div. 2, combined) E. Game of Stones

时间:2017-02-21 13:42:05      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:博弈论   方案   codeforce   names   game   打表   can   namespace   moved   

打表找规律即可。

1,1,2,2,2,3,3,3,3,4,4,4,4,4...

注意打表的时候,sg值不只与剩下的石子数有关,也和之前取走的方案有关。

//#include<cstdio>
//#include<set>
//#include<cstring>
//using namespace std;
//bool vis[16];
//int n,SG[16][1<<16];
//int sg(int x,int moved)
//{
//	if(SG[x][moved]!=-1)
//	  return SG[x][moved];
//	set<int>S;
//	for(int i=1;i<=x;++i)
//	  if(!((moved>>(i-1))&1))
//	    S.insert(sg(x-i,moved|(1<<(i-1))));
//	for(int i=0;;++i)
//	  if(S.find(i)==S.end())
//	    return SG[x][moved]=i;
//}
//int main()
//{
//	scanf("%d",&n);
//	for(int i=1;i<=n;++i)
//	  {
//	  	memset(SG,-1,sizeof(SG));
//	  	printf("%d:%d\n",i,sg(i,0));
//	  }
//	return 0;
//}
#include<cstdio>
using namespace std;
int sg[100],n,ans,e;
int main()
{
//	freopen("e.in","r",stdin);
	int x;
	for(int i=1;;++i)
	  {
	  	for(int j=1;j<=i+1;++j)
	  	  {
	  	  	sg[++e]=i;
	  	  	if(e==60)
	  	  	  goto OUT;
	  	  }
	  }
	OUT:
	scanf("%d",&n);
	for(int i=1;i<=n;++i)
	  {
	  	scanf("%d",&x);
	  	ans^=sg[x];
	  }
	puts(ans ? "NO" : "YES");
	return 0;
}

【博弈论】【SG函数】【找规律】Divide by Zero 2017 and Codeforces Round #399 (Div. 1 + Div. 2, combined) E. Game of Stones

标签:博弈论   方案   codeforce   names   game   打表   can   namespace   moved   

原文地址:http://www.cnblogs.com/autsky-jadek/p/6423640.html

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