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

ZOJ 4712: Modular Inverse

时间:2017-08-07 00:21:02      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:cin   type   author   pre   include   nbsp   ons   names   cout   

Modular Inverse

///@author Sycamore, ZJNU;
///@date 8/6/2017
///@ref stanford-acm-master
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int mod(int a, int b)
{
	return ((a%b) + b) % b;
}
 
int extended_euclid(int a, int b, int &x, int &y) {
	int xx = y = 0;
	int yy = x = 1;
	while (b) {
		int q = a / b;
		int t = b; b = a%b; a = t;
		t = xx; xx = x - q*xx; x = t;
		t = yy; yy = y - q*yy; y = t;
	}
	return a;
}
int mod_inverse(int a, int n) {
	int x, y;
	int g = extended_euclid(a, n, x, y);
	if (g > 1) return -1;
	return mod(x,n)==0?n:mod(x,n);
}
 
int main()
{
	ios::sync_with_stdio(false);
	int T;
	cin >> T;
	while (T--)
	{
		int a, m;
		cin >> a >> m;
		int mi = mod_inverse(a, m);
		if (~mi)cout << mi;
		else cout << "Not Exist";
		cout << "\n";
	}
	return 0;
} 

ZOJ 4712: Modular Inverse

标签:cin   type   author   pre   include   nbsp   ons   names   cout   

原文地址:http://www.cnblogs.com/zjnu/p/7296280.html

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