POJ 2348 Euclid's Game

本文介绍了一种基于两个自然数的博弈论游戏算法。玩家通过交替操作减小数值,直至一方获胜。文章提供了详细的实现代码,并通过实例展示了游戏过程。

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.


【题目分析】
博弈论。


【代码】

#include <cstdio>
#include <cmath>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
int a,b,win=1; 
int main()
{
    while (scanf("%d%d",&a,&b)!=EOF&&a&&b)
    {
        win=1;
        if (a<b) swap(a,b);
        while (a)
        {
            if (a/2>=b||a==b)  break;
            a-=b;
            int x=a;
            a=b;
            b=x;
            win^=1;
        }
        if (win) printf("Stan wins\n");
        else printf("Ollie wins\n");
    }
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值