HDU-1527 取石子游戏
作者:互联网
取石子游戏
威佐夫博弈
板子加规律题,就很没办法
他们的差值与最小的那个值有黄金分割比例,最小的那个值比差值大
#include <iostream>
#include <cmath>
using namespace std;
typedef long long ll;
int main()
{
ll n, m;
while(cin >> n >> m)
{
if(n > m) swap(n, m);
double w = (sqrt(5.0) + 1.0) / 2.0;
ll x = (m - n) * w;
if(x == n) cout << 0 << endl;
else cout << 1 << endl;
}
return 0;
}
标签:HDU,游戏,ll,石子,long,1527,差值,include 来源: https://www.cnblogs.com/dgsvygd/p/16270153.html