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

poj 3480 John anti-SG博弈

时间:2015-04-09 19:51:38      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:poj   算法   

题意:

跟经典的nim除了胜利条件不一样(nim当游戏者面对空的决策集判负,anti-SG当游戏者面对空的决策集判负),其他都一样。

分析:

设全局状态为s,单个游戏为t。先手必胜条件:(g(s)!=0&&Existg(t)>1)||(g(s)==0&&Anyg(t)<=1) g(w)指状态w的grundy值。这个定理用必胜态可到必败态,必败态必到必胜态的思想易证。

代码:

//poj 3480
//sep9
#include <iostream>
using namespace std;

int main()
{
	int cases;
	scanf("%d",&cases);
	while(cases--){
		int n,maxx=0;
		scanf("%d",&n);
		int ans=0;
		while(n--){
			int x;
			scanf("%d",&x);
			maxx=max(maxx,x);
			ans=ans^x;
		}
		if((ans!=0&&maxx>1)||(ans==0&&maxx<=1)) 
			puts("John");
		else 
			puts("Brother");
	}
	return 0;	
} 


poj 3480 John anti-SG博弈

标签:poj   算法   

原文地址:http://blog.csdn.net/sepnine/article/details/44964075

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