博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数论 - 最小乘法逆元
阅读量:6096 次
发布时间:2019-06-20

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

我只能说这个数论定理对我一脸懵比,哦不对,是我对这个数论定理一脸懵比,暂时

只准备记住模板就好了,求最小逆元的时候可以用一下,如果mod为素数而且不要求

最小的话还是用费马小定理吧,对了还是要说一下,这个模板中exgcd(扩展欧几里德)

的返回值是gcd(最大公约数),其中x才是要求的逆元,而且一求出来时并不是最小

而且还有可能是负数,有点分类讨论了,不过我找模板的时候把分类讨论那里用一个更

优的方案代替了(也是找的),用的时候注意点,不说了,我还是准备懵比去吧= =

 

 

#include<iostream>

#include<algorithm>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<vector>
#include<queue>
#include<cctype>
using namespace std;

#define Int __int64

#define INF 0x3f3f3f3f

int exgcd(int a, int b, int &x, int &y) {

  if (b == 0) {
    x = 1;
    y = 0;
    return a;
  }
  int gcd = exgcd(b, a%b, x, y);
  int t = y;
  y = x - a/b*y;
  x = t;
  return gcd;
}
int main()
{
  //freopen("input.txt", "r", stdin);
  int n, m, x, y;
  while (scanf("%d%d", &n, &m) != EOF) {
    int gcd = exgcd(n, m, x, y);
    int q = m / gcd;
    x = ((x % q) + q)%q;
    printf("%d\n", x);
  }
  return 0;
}

转载于:https://www.cnblogs.com/steamedbun/p/5757769.html

你可能感兴趣的文章
表闪回
查看>>
jQuery插件 -- Cookie插件jquery.cookie.js(转)
查看>>
常见EMC疑问及对策
查看>>
About Me
查看>>
BZOJ4756:[USACO]Promotion Counting(线段树合并)
查看>>
内部类、代码块
查看>>
软件工程第二章 习题2 第5题
查看>>
残缺的字符串【FFT】
查看>>
ZZULIOJ 1917: E
查看>>
南阳oj 题目2—括号配对问题
查看>>
C/C++的const区别
查看>>
定位Java运行时 代码段方法
查看>>
Eclipse 编译错误 Access restriction:The type *** is not accessible due to restriction on... 解决方案...
查看>>
python第三方库汇总
查看>>
matplotlib可视化_常用图
查看>>
TypeScript 额外的属性检测
查看>>
构建自己的GAFATA
查看>>
视频地址blog加密
查看>>
iOS 开发使用 Jenkins 搭建 CI 服务器
查看>>
Linux内核-内存回收逻辑和算法(LRU)
查看>>