[POJ1284]Primitive Roots(原根性质的应用)

题目:http://poj.org/problem?id=1284

题意:就是求一个奇素数有多少个原根

分析:

使得方程a^x=1(mod m)成立的最小正整数x是φ(m),则称a是m的一个原根

然后有这样的定理:

  1、所有奇素数都有原根

  2、如果一个数n有原根,那么原根个数为φ(φ(n))

由性质2就可知道,对于此题的奇素数n,结果就是φ(n-1)

时间: 2024-11-03 22:24:03

[POJ1284]Primitive Roots(原根性质的应用)的相关文章

POJ1284 Primitive Roots (原根)

题目链接:http://poj.org/problem?id=1284 题目描述: 题目大意: 一个质数原根的个数 题解: 结论题 一个数n的原根的个数等于$\varphi(\varphi(n))$ #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<cmath> using namespace std; const int N=65

poj1284——Primitive Roots(欧拉函数)

Description We say that integer x, 0 < x < p, is a primitive root modulo odd prime p if and only if the set { (xi mod p) | 1 <= i <= p-1 } is equal to { 1, -, p-1 }. For example, the consecutive powers of 3 modulo 7 are 3, 2, 6, 4, 5, 1, and t

poj1284 Primitive Roots

考虑互质的两个数a < n, a是n的原根当且仅当对任意的p < φ(n)有ap mod n ≠ 1(φ(n)是n的欧拉函数). 也即等价于集合ap(p < φ(n)) 与n的简化剩余系相等. 判定a(< n)是否是n的原跟的方法: 计算φ(n)的质因数集合{p1, p2, ..., pk) , 若aφ(n)/pi mod n ≠ 1,则a是n的原根. 这样的a共有φ(φ(n))个. http://poj.org/problem?id=1284 1 #include <cst

poj 1284 Primitive Roots(原根)

定理:假如一个数x有原根,则元根的个数为phi(phi(x)),phi(x)为小于x且与x互质的正整数个数. #include <iostream> #include <cmath> using namespace std; int p; int f(int x){ int ans=x; int m=sqrt(x+0.5); for(int i=2;i<=m;i++)if(x%i==0){ ans=ans/i*(i-1); while(x%i==0)x/=i; } if(x&

POJ 1284 Primitive Roots (求原根个数)

Primitive Roots 题目链接:http://poj.org/problem?id=1284 利用定理:素数 P 的原根的个数为euler(p - 1) typedef long long ll; using namespace std; /* 求原根 g^d ≡ 1(mod p) 其中d最小为p-1,g 便是一个原根 复杂度:O(m)*log(P-1)(m为p-1的质因子个数) */ ll euler(ll x) { ll res = x; for (ll i = 2; i <= x

poj 1284 Primitive Roots 【原根】【数论】

题目链接 :传送门 题目大意: 求一个质数的原根个数. 先普及一下原根的定义: 设m是正整数,a是整数,若a模m的阶等于euler(m),则称a为模m的一个原根. eg: m=7,euler(7) =  6(1,2,3,4,5,6) 则: 1   1^(n)mod7=1! = 6 2   2^(n)mod7={2 4 1}!=6 3   3^(n)mod7={3,2,6,4,5,1}==6   故3是模7的原根 4   4^(n)mod7={4,2,1}!=6 5   5^(n)mod7={5,

POJ 1284 Primitive Roots (原根)

Primitive Roots Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 3219   Accepted: 1858 Description We say that integer x, 0 < x < p, is a primitive root modulo odd prime p if and only if the set { (xi mod p) | 1 <= i <= p-1 } is eq

Primitive Roots(poj1284)

Primitive Roots Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 3928   Accepted: 2342 Description We say that integer x, 0 < x < p, is a primitive root modulo odd prime p if and only if the set { (xi mod p) | 1 <= i <= p-1 } is eq

POJ 1284 Primitive Roots

Primitive Roots Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5481   Accepted: 3101 Description We say that integer x, 0 < x < p, is a primitive root modulo odd prime p if and only if the set { (xi mod p) | 1 <= i <= p-1 } is eq