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

扩展欧几里得

时间:2018-08-23 12:05:01      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:end   arp   highlight   algo   main   space   pac   res   turn   

 

 

#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
#define ll long long
ll gcdd(ll a,ll b,ll &x,ll &y)
{
    if(b==0)
    {
        x=1;
        y=0;
        return a;
    }
    ll res=gcdd(b,a%b,x,y);
    ll temp=x;
    x=y;
    y=temp-a/b*y;
    return res;
}
int main()
{
    ll x,y,m,n,L,k,T;
    while(cin>>x>>y>>m>>n>>L)
    {
        ll gcd=gcdd(m-n,L,k,T);
        if((y-x)%gcd!=0)
        {
            cout<<"Impossible"<<endl;
        }
        else
        {
            ll mmp=(y-x)/gcd;
            k*=mmp;
            ll k0=k%abs(L/gcd);
            if(k0<0)k0+=abs(L/gcd);
            cout<<k0<<endl;
        }
    }
    return 0;
}

  

扩展欧几里得

标签:end   arp   highlight   algo   main   space   pac   res   turn   

原文地址:https://www.cnblogs.com/carcar/p/9522854.html

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