hdu 1730 Nim博弈

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1730 Nim博弈相关的知识,希望对你有一定的参考价值。

题目来源:http://acm.hdu.edu.cn/showproblem.php?pid=1730

Nim博弈为:n堆石子,每个人可以在任意一堆中取任意数量的石子

n个数异或值为0就后手赢,否则先手赢

 

将这题转化成Nim游戏

可以在任意一行中移动任意距离,可以向左或右,但是仔细观察发现,其实只能接近对方棋子,如果你远离对方棋子,对方可以接近你相同距离

和nim相似的是,不能不移,所以两个棋子的距离差就是SG值

 

#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
	int n,m;
	while(cin>>n>>m)
	{
		int ans=0;
		for(int i=1;i<=n;i++)
		{
			int a,b;
			scanf("%d %d",&a,&b);
			ans^=int(abs(a-b)-1);
		}
		if(ans==0)cout<<"BAD LUCK!"<<endl;
		else cout<<"I WIN!"<<endl;
	}
	return 0;
}

  

以上是关于hdu 1730 Nim博弈的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1730 类NIM模型

hdu1850(nim博弈)

HDU1944 S-NIM(多个NIM博弈)

HDU 1907 Nim博弈变形

hdu-2509-反nim博弈

HDU 2509 Nim博弈