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

拓展欧几里得

时间:2017-07-20 20:55:42      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:return   its   cout   clu   std   ret   int   bsp   amp   

 

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;

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

int main(){
    LL a,b,x,y;
    cin>>a>>b;
    exgcd(a,b,x,y);
    x=(x%b+b)%b;
    cout<<x<<endl;
    return 0;
}

拓展欧几里得

标签:return   its   cout   clu   std   ret   int   bsp   amp   

原文地址:http://www.cnblogs.com/codetogether/p/7214140.html

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