博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
exgcd模板
阅读量:4987 次
发布时间:2019-06-12

本文共 603 字,大约阅读时间需要 2 分钟。

\(ax+by\)

\(=gcd(a,b)\)
\(=gcd(b,a%b)\)
\(=gcd(b,a-(a/b)*b)\)
\(=bx'+(a-(a/b)*b)y'\)
\(=ay'+(x'-(a/b)y')b\)

\(x=y'\)

\(y=x'(a/b)y\)

#include
#include
using namespace std;pair
exgcd(int x,int y){ if(x==1&&y==0) return make_pair(x,y); pair
ans=exgcd(y,x%y); return make_pair(ans.second,ans.first-(x/y)*ans.second);} int main(){ int a,b; scanf("%d%d",&a,&b); pair
ans=exgcd(a,b); printf("%d\n",(ans.first%b+b)%b); return 0;}

转载于:https://www.cnblogs.com/ShineEternal/p/11217729.html

你可能感兴趣的文章
Spring-aop(一)
查看>>
ucos在xp平台下开发环境搭建
查看>>
python基础入门while循环 格式化 编码初识
查看>>
cmake方式使用vlfeat
查看>>
windows下用纯C实现一个简陋的imshow:基于GDI
查看>>
struts2 自定义类型转换器
查看>>
cocos2d-x xna在有vs2012和vs2010的情况下的环境部署
查看>>
43-安装 Docker Machine
查看>>
c++学习(三):表达式和语句
查看>>
laravel框架基础知识总结
查看>>
nginx: 响应体太大
查看>>
字符串反混淆实战 Dotfuscator 4.9 字符串加密技术应对策略
查看>>
单例模式
查看>>
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>
MySQL-5.7 高阶语法及流程控制
查看>>
C++学习笔记(十)——向上造型
查看>>
2017/6/16
查看>>