URAL 1456 求a模n的阶

简介:

首要条件是a,n互素,也就是求a^x=1(n)最小的x,根据欧拉函数可知最大为n的欧拉函数值。所以n的欧拉函数值的因子就可以了。

#include <iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<map>
#include<set>
using namespace std;
#define ll long long
ll gcd(ll a,ll b)
{
    return b?gcd(b,a%b):a;
}
ll phi(long long n)
{
    long long rea=n;
    for(int i=2; i*i<=n; i++)
        if(n%i==0)
        {
            rea=rea-rea/i;
            do
                n/=i;
            while(n%i==0);
        }
    if(n>1)rea=rea-rea/n;
    return rea;
}
ll exp_mod(ll a,ll b,ll c)
{
    a%=c;
    ll ans=1;
    while(b)
    {
        if(b&1) ans=ans*a%c;
        b>>=1,a=a*a%c;
    }
    return ans;
}
int main()
{
    ll a,n;
    cin>>a>>n;
    if(gcd(a,n)!=1)
    {
        puts("0");
        return 0;
    }
    ll p=phi(n),l=(ll)sqrt(p*1.0),ans=1e9;
    for(ll i=1; i<=l; i++)
        if(p%i==0)
        {
            if(exp_mod(a,i,n)==1)ans=min(ans,i);
            if(exp_mod(a,p/i,n)==1)ans=min(ans,p/i);
        }
    printf("%I64d\n",ans);
    return 0;
}


目录
相关文章
|
8月前
|
C++
【PTA】​ L1-080 乘法口诀数列​(C++)
【PTA】​ L1-080 乘法口诀数列​(C++)
106 0
【PTA】​ L1-080 乘法口诀数列​(C++)
|
8月前
leetcode-990:等式方程的可满足性
leetcode-990:等式方程的可满足性
55 0
|
算法
HDU-1217,Arbitrage(Floyd加法变乘法)
HDU-1217,Arbitrage(Floyd加法变乘法)
|
机器学习/深度学习
HDOJ 1013题Digital Roots 大数,9余数定理
HDOJ 1013题Digital Roots 大数,9余数定理
146 0
|
机器学习/深度学习
HDOJ 1163 Eddy's digital Roots(九余数定理的应用)
HDOJ 1163 Eddy's digital Roots(九余数定理的应用)
113 0
HDOJ 1163 Eddy&#39;s digital Roots(九余数定理的应用)
Problem Description The digital root of a positive integer is found by summing the digits of the integer.
1001 0
|
机器学习/深度学习 算法
数论 + 扩展欧几里得 - SGU 106. The equation
 The equation  Problem's Link   Mean:  给你7个数,a,b,c,x1,x2,y1,y2.求满足a*x+b*y=-c的解x满足x1= lx)    {        ans = min(rx,ry)-ma...
1184 0

热门文章

最新文章