标签:方向 out name amp return 忘记 单位 输入 style
Input
Output
Sample Input
1 2 3 4 5
Sample Output
4
真的大水题,不过看了数论之后还是一脸懵逼,要多练,最后发现不要随便用逆元,容易gg,一不小心少写一个负号。。。。
#include <iostream> #include <cstdio> #include <cstdlib> using namespace std; typedef long long ll; ll extgcd(ll a,ll b,ll &x,ll &y) { ll d=a; if(b!=0) { d=extgcd(b,a%b,y,x); y-=(a/b)*x; } else { x=1;y=0; } return d; } ll realgcd; int main() { ll x,y,m,n,l,e,k; while(cin>>x>>y>>m>>n>>l){ realgcd=extgcd(n-m,l,e,k); ll r=l/realgcd; ll tmp=x-y; if(tmp%realgcd!=0) { cout<<"Impossible"<<endl; } else { cout<<((x-y)/realgcd*e%r+r)%r<<endl; } }}
标签:方向 out name amp return 忘记 单位 输入 style
原文地址:https://www.cnblogs.com/coolwx/p/11161243.html