博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【POJ】2348 Euclid's Game(扩欧)
阅读量:5281 次
发布时间:2019-06-14

本文共 1953 字,大约阅读时间需要 6 分钟。

Description

Two players, Stan and Ollie, play, starting with two natural numbers. Stan, the first player, subtracts any positive multiple of the lesser of the two numbers from the greater of the two numbers, provided that the resulting number must be nonnegative. Then Ollie, the second player, does the same with the two resulting numbers, then Stan, etc., alternately, until one player is able to subtract a multiple of the lesser number from the greater to reach 0, and thereby wins. For example, the players may start with (25,7): 
25 7          11 7           4 7           4 3           1 3           1 0
an Stan wins.

Input

The input consists of a number of lines. Each line contains two positive integers giving the starting two numbers of the game. Stan always starts.

Output

For each line of input, output one line saying either Stan wins or Ollie wins assuming that both of them play perfectly. The last line of input contains two zeroes and should not be processed.

Sample Input

34 1215 240 0

Sample Output

Stan winsOllie wins ------------------------------------------------------------------ 题意:两个人在玩一个类似gcd的游戏,从两个数中不断用较大数中减去较小数的倍数,谁先得到0谁获胜,问谁赢。 分析:一开始还以为是要跑gcd,然而还是太naive了。看了一下《挑战》,总结了一下思路。   {策略1}:对于(a,b)(a>b)来说,如果a是b的倍数,那么肯定当前者赢。   {策略2}:对于(a,b)(a>b)来说,如果a<2*b,那么意味着下一个状态必定是(b,a-b),因为此时a不可能减去更多倍的b,以此类推之后,永远不会出现a%b==0的情况,因为如果能出现的话,策略1就会将其判定了。那么肯定当前者赢。
  用上策略1和策略2就AC了。
1 #include 
2 #include
3 using namespace std; 4 int main() 5 { 6 long long a,b;//f=1表示stan赢 7 while( scanf("%lld%lld",&a,&b)==2 && a!=0 && b!=0 ) 8 { 9 int f=1;10 while(1)11 {12 if(a>b) swap(a,b);13 if(b%a==0) break;//策略114 if(b-a>a) break;//策略215 b-=a;16 f*=-1; 17 }18 if(f==1) printf("Stan wins\n");19 else printf("Ollie wins\n");20 }21 return 0;22 }

 

转载于:https://www.cnblogs.com/noblex/p/7577488.html

你可能感兴趣的文章
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
根据xml生成相应的对象类
查看>>
Android StageFrightMediaScanner源码解析
查看>>
springBoot 项目 jar/war打包 并运行
查看>>
HDU 1501 Zipper
查看>>
打包java程序生成exe
查看>>
八叉树
查看>>
poj 1129 搜索
查看>>
Git 远程仓库
查看>>
HttpClient的巨坑
查看>>
关于静态文本框透明度的问题
查看>>
海量数据、高并发的优化方案
查看>>
javascript的发展及个人笔记
查看>>
全选,反全选,反选,获取选中的值,根据子选择控制全选按钮
查看>>
梦断代码读后感01
查看>>
[CF#250 Div.2 D]The Child and Zoo(并查集)
查看>>