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

HDU 3032 multi-sg 打表找规律

时间:2017-10-16 23:21:51      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:win   ace   first   sg函数   ack   eps   sizeof   back   hdu   

普通NIM规则加上一条可以分解为两堆,标准的Multi-SG游戏

一般Multi-SG就是根据拓扑图计算SG函数,这题打表后还能发现规律

sg(1)=1

sg(2)=2

sg(3)=mex{0,1,2,1^2}=4

sg(4)=mex{0,1,2,sg(3)}=3

可以发现3和4的时候相当于互换了位置

 

 

/** @Date    : 2017-10-12 21:20:21
  * @FileName: HDU 3032 博弈 SG函数找规律.cpp
  * @Platform: Windows
  * @Author  : Lweleth (SoungEarlf@gmail.com)
  * @Link    : https://github.com/
  * @Version : $Id$
  */
#include <bits/stdc++.h>
#define LL long long
#define PII pair
#define MP(x, y) make_pair((x),(y))
#define fi first
#define se second
#define PB(x) push_back((x))
#define MMG(x) memset((x), -1,sizeof(x))
#define MMF(x) memset((x),0,sizeof(x))
#define MMI(x) memset((x), INF, sizeof(x))
using namespace std;

const int INF = 0x3f3f3f3f;
const int N = 1e5+20;
const double eps = 1e-8;


int main()
{
	int T;
	cin >> T;
	while(T--)
	{
		int n;
		cin >> n;
		int ans = 0;
		for(int i = 0; i < n; i++)
		{
			int x;
			scanf("%d", &x);
			if(x % 4 == 3)
				ans ^= x + 1;
			else if(x % 4 == 0)
				ans ^= x - 1;
			else ans ^= x;
		}
		if(ans) printf("Alice\n");
		else printf("Bob\n");
	}
    return 0;
}
//SG(1)=1
//SG(2)=2
//SG(3)=MEX{1,2,1^2}   
//SG(4)=MEX{1,2,SG(3)}  //互换先后手

HDU 3032 multi-sg 打表找规律

标签:win   ace   first   sg函数   ack   eps   sizeof   back   hdu   

原文地址:http://www.cnblogs.com/Yumesenya/p/7679095.html

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