#include<bits/stdc++.h>
using namespace std;
#define file(a) freopen(#a".in","r",stdin),freopen(#a".out","w",stdout)
int exgcd(int a,int b,int &x,int &y)
{
if(b==0)
{
x=1;y=0;
return a;
}
int d=exgcd(b,a%b,x,y);
int tmp=x;
x=y;
y=tmp-(a/b)*y;
return d;
}
bool liEu(int a,int b,int c,int &x,int &y)
{
int d=exgcd(a,b,x,y);
if(c%d) return 0;
int k=c/d;
x*=k;y*=k;
return 1;
}
int main()
{
int a,b,x=0,y=0;
scanf("%d%d",&a,&b);
if(liEu(a,b,1,x,y))
{
printf("%d",(x%b+b)%b);
}
return 0;
}
相关文章
- 09-28扩展的Sobel 算子
- 09-28在Windows下编译扩展OpenCV 3.1.0 + opencv_contrib
- 09-28扩展中国剩余定理(exCRT)
- 09-28(扩展)中国剩余定理(CRT&exCRT)
- 09-28[('type','=','get_user_ht_type()')]">openerp学习笔记 domain 增加扩展支持,例如支持
[('type','=','get_user_ht_type()')] - 09-28Apache Hivemall:可运行在Apache Hive, Spark 和 Pig 上的可扩展
- 09-28线性同余方程(同余+扩展欧几里得模板)
- 09-28扩展Mongoose Model的静态方法和实例方法
- 09-28无需某些WebGL扩展,Three.js能否准确呈现?
- 09-28特质列表处理程序不响应=列表扩展