HD 2177(威佐夫博弈 入门)

时间:2021-06-30 13:25:44

取(2堆)石子游戏

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1730    Accepted Submission(s): 1049

Problem Description
有两堆石子,数量任意,可以不同。游戏开始由两个人轮流取石子。游戏规定,每次有两种不同的取法,一是可以在任意的一堆中取走任意多的石子;二是可以在两堆中同时取走相同数量的石子。最后把石子全部取完者为胜者。现在给出初始的两堆石子的数目,如果轮到你先取,假设双方都采取最好的策略,问最后你是胜者还是败者。如果你胜,你第1次怎样取子? 
 
Input
输入包含若干行,表示若干种石子的初始情况,其中每一行包含两个非负整数a和b,表示两堆石子的数目,a和b都不大于1,000,000,且a<=b。a=b=0退出。
 
Output
输出也有若干行,如果最后你是败者,则为0,反之,输出1,并输出使你胜的你第1次取石子后剩下的两堆石子的数量x,y,x<=y。如果在任意的一堆中取走石子能胜同时在两堆中同时取走相同数量的石子也能胜,先输出取走相同数量的石子的情况.
 
Sample Input
1 2
5 8
4 7
2 2
0 0
 
Sample Output
1
4 7
3 5
1
0 0
1 2
 
如果(a - b) * gold == b则满足先手必败,其中gold = ( sqrt(5) + 1) ) / 2 = 1.618
输出时先看是否能同时取相同数量的石子,即差值保持不变
还有就是枚举差值,差值最小为1,最大为m-1,枚举满足这个差值的a和b,
如果a == n则可以拿m使它成为b,
如果a == m,这种可能不会存在,因为b就比最大的大了,
如果b == n,则可以拿m使它成为a,
如果b == m,则可以拿n,使他成为a
 #include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <cmath>
using namespace std; int main()
{
int n,m;
while(scanf("%d%d", &n, &m) != EOF)
{
if(n == && m == )
break;
if(n > m)
{
swap(n, m);
}
double gold = (sqrt() + )/;
int c = gold * (m - n);
int a,b;
if(c == n)
{
printf("0\n");
}
else
{
printf("1\n");
printf("%d %d\n", c, c + m - n);
for(int i = ; i <= m; i++)
{
a = i * gold;
if(a == c)
continue;
b = a + i;
if(a == n)
{
printf("%d %d\n", a,b);
}
else if(b == n)
{
printf("%d %d\n",a, b);
}
else if(b == m)
{
printf("%d %d\n", a, b);
}
}
}
}
return ;
}