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

扩展欧几里得

时间:2018-01-14 11:00:25      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:cst   div   bsp   lib   color   end   log   pos   namespace   

#include <iostream>
#include <cstdio>
#include <cstring>
#include <stdlib.h>
#include <algorithm>
#include <math.h>
#include <vector>
#include <list>
#include <map>
#include <queue>
#include <set>
using namespace std;

int exGcd(int a,int b,int *x,int *y)
{
    if(b==0)
    {
        *x=1;*y=0;
        return a;
    }
    int r=exGcd(b,a%b,x,y);
    int t=*x;*x=*y;*y=t-a/b*(*y);
    return r;
}

int main(){
    int a,b,x,y;
    cin>>a>>b;
    cout<<exGcd(a,b,&x,&y)<<endl;
    cout<<x<<" "<<y<<endl;
}

 

扩展欧几里得

标签:cst   div   bsp   lib   color   end   log   pos   namespace   

原文地址:https://www.cnblogs.com/Culion-BEAR/p/8282292.html

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