码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 2669 Romantic(扩展欧几里德)

时间:2015-04-02 09:13:28      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

题意:Now tell you two nonnegative integer a and b. Find the nonnegative integer X and integer Y to satisfy X*a + Y*b = 1.

而且要满足X是通解中最小的。

注意X可以取0就可以了

//31MS 1808K 761 B G++
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long ll;
ll e_gcd(ll a,ll b,ll &x,ll&y)
{
    ll ans;
    if(b==0)
    {
        ans=a;
        x=1,y=0;
    }
    else
    {
        ans=e_gcd(b,a%b,y,x);
        y-=(a/b)*x;
    }
    return ans;
}
int main()
{
    ll a,b,x,y;
    while(~scanf("%I64d%I64d",&a,&b))
    {
        ll gcd=e_gcd(a,b,x,y);
        if(gcd!=1)
            puts("sorry");
        else
        {
            while(x<0)
            {
                x+=b;
                y-=a;
            }
            printf("%I64d %I64d\n",x,y);
        }
    }
    return 0;
}


HDU 2669 Romantic(扩展欧几里德)

标签:

原文地址:http://blog.csdn.net/kalilili/article/details/44816627

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!