[poj2368]Buttons_博弈论

Posted shurak

tags:

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

Buttons poj-2368

题目大意:给定n个按钮,每次可以按动[1,t]个。求最小的t使得先手必败。

注释:$1le nle 10^8$。


想法:经典巴什博弈。

求n的最小非1约数-1即可。

最后,附上丑陋的代码... ...

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
using namespace std;
int main()
{
	int n; cin >> n ;
	int minn=n;
	for(int i=1;i*i<=n;i++)
	{
		if(!n%i)
		{
			if(i>2) minn=min(minn,i);
			if(n/i>2) minn=min(minn,n/i);
		}
	}
	if(minn>2) cout << minn-1 << endl ;
	else cout << 0 << endl ;
	return 0;
}

小结:无。

以上是关于[poj2368]Buttons_博弈论的主要内容,如果未能解决你的问题,请参考以下文章

POJ 2368 Buttons

poj2368(巴什博弈变形)

[poj2975]Nim_博弈论

[poj2234]Matces Game_博弈论

[poj2505]A multiplication game_博弈论

[poj2425]A Chess Game_博弈论