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

求原根模版

时间:2014-09-20 23:58:19      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   2014   div   sp   log   on   c   


#include <cstdio>
#include <cstring>
using namespace std;
typedef long long LL;
int p[100000], c;


LL pow_mod(LL a, LL x, LL m)
{
	LL ans = 1;
	while(x)
	{
		if(x&1)
			ans = ans * a % m;
		a = a * a % m;
		x >>= 1;
	}
	return ans;
}

bool ok(int x, int ph, int m)
{
	for(int i = 0; i < c; i++)
		if(pow_mod(x, ph/p[i], m) == 1)
			return false;
	return true;
}
void divide(int x)
{
	c = 0;
	for(int i = 2; i*i <= x; i++)
	{
		if(x % i == 0)
		{
			p[c++] = i;
			while(x % i == 0)
				x /= i;
		}
	}
	if(x > 1)
		p[c++] = x;
}
int main()
{
	int T;
	scanf("%d", &T);
	while(T--)
	{
		int n;
		scanf("%d", &n);
		int m = n, ans = m;
		for(int i = 2; i*i <= n; i++)
		{
			if(n%i == 0)
			{
				ans = ans / i * (i-1);
				while(n%i == 0)
					n /= i;
			}
		}
		if(n > 1)
			ans = ans / n * (n-1);
		//printf("%d\n", ans);
		divide(ans);
		int x = ans;
		while(!ok(x, ans, m))
			x--;
		printf("%d\n", x);
	}
	return 0;
}


求原根模版

标签:blog   io   for   2014   div   sp   log   on   c   

原文地址:http://blog.csdn.net/u011686226/article/details/39435615

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