poj1061-青蛙的约会拓展欧几里得-不定方程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj1061-青蛙的约会拓展欧几里得-不定方程相关的知识,希望对你有一定的参考价值。

http://poj.org/problem?id=1061

题意:裸题。注意负数。

技术分享
//poj1061
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
using namespace std;

typedef long long LL;
LL tx,ty;

LL exgcd(LL a,LL b)
{
    if(b==0) {tx=1,ty=0;return a;}
    LL d=exgcd(b,a%b);
    LL x=ty,y=tx-(a/b)*ty;
    tx=x;ty=y;
    return d;
}

int main()
{
    // freopen("a.in","r",stdin);
    // freopen("a.out","w",stdout);
    LL x,y,m,n,l;
    scanf("%I64d%I64d%I64d%I64d%I64d",&x,&y,&m,&n,&l);
    LL g=exgcd(m-n,l);
    // printf("g = %I64d\n",g);
    if((y-x)%g!=0) printf("Impossible\n");
    else {
        LL rx=tx*(y-x)/g;
        LL r=l/g;
        if(r<0) r*=-1;
        rx=(rx%r+r)%r;
        printf("%I64d\n",rx);
    }
    return 0;
}
View Code

 

以上是关于poj1061-青蛙的约会拓展欧几里得-不定方程的主要内容,如果未能解决你的问题,请参考以下文章

青蛙的约会 POJ1061(拓展欧几里得)

POJ 1061 青蛙的约会 扩展欧几里得

poj1061 青蛙的约会

POJ 1061 青蛙的约会(欧几里得扩展)

题解: poj 1061 nefu 84(拓展欧几里得)

poj 1061 青蛙的约会 (扩展欧几里得模板)