hdu 2669 http://acm.hdu.edu.cn/showproblem.php?pid=2669

//a*x+b*y=1; 求解x和y值
//注意:x为最小值。
#include<stdio.h>
#include<string.h>
__int64 gcd(__int64 a,__int64 b)
{
    if(b==0)
     return a;
    return gcd(b,a%b);
}
__int64 ext_Euclid(__int64 a,__int64 b,__int64 &x,__int64 &y)
{
    if(b==0)
    {
        x=1;y=0;
        return a;
    }
    __int64 d=ext_Euclid(b,a%b,x,y);
    __int64 tem=x;
    x=y;
    y=tem-a/b*y;
    return d;
}
int main()
{
     __int64 a,b;
     __int64 x,y;
    while(scanf("%I64d%I64d",&a,&b)!=EOF)
    {
        __int64 d=gcd(a,b);
        if(1%d)
        {
            printf("sorry\n");
        }
        else
        {
             __int64 c=ext_Euclid(a,b,x,y);
             x=(x*(1/d))%b;
             x=(x%(b/d)+b/d)%(b/d);//求最小整数解。
             y=(1-a*x)/b;
            printf("%I64d %I64d\n",x,y);
        }
    }
    return 0;
}

你可能感兴趣的:(hdu 2669 http://acm.hdu.edu.cn/showproblem.php?pid=2669)