POJ-1284 Primitive Roots---原根&歐拉函數
阿新 • • 發佈:2018-05-15
urn ace info als while long space msu sin
題目鏈接:
https://cn.vjudge.net/problem/POJ-1284
題目大意:
就是給出一個奇素數,求出他的原根的個數。
解題思路:
由於是m是奇素數,m的歐拉函數值為m - 1,所以直接求出?(m - 1)即可
1 #include<iostream> 2 #include<cmath> 3 using namespace std; 4 typedef long long ll; 5 int euler_phi(int n)//求單個 6 { 7 int m = (int)sqrt(n + 0.5); 8 int ans = n;9 for(int i = 2; i <= m; i++)if(n % i == 0) 10 { 11 ans = ans / i * (i - 1); 12 while(n % i == 0)n /= i; 13 } 14 if(n > 1)ans = ans / n * (n - 1); 15 return ans; 16 } 17 int main() 18 { 19 int n; 20 while(cin >> n) 21 { 22 cout<<euler_phi(n - 1)<<endl; 23 } 24 return 0; 25 }
POJ-1284 Primitive Roots---原根&歐拉函數