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

fzu1759 Super A^B mod C 扩展欧拉定理降幂

时间:2017-12-28 23:26:12      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:std   splay   while   欧拉定理   eof   markdown   post   iostream   UI   

扩展欧拉定理:
\[ a^x \equiv a^{x\mathrm{\ mod\ }\varphi(p) + x \geq \varphi(p) ? \varphi(p) : 0}(\mathrm{\ mod\ }p)\]

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
typedef long long ll;
ll aa, cc;
char bb[1000005];
ll getPhi(ll x){
    ll ans=x;
    for(ll i=2; i*i<=x; i++)
        if(x%i==0){
            ans -= ans / i;
            while(x%i==0)   x /= i;
        }
    if(x>1) ans -= ans / x;
    return ans;
}
ll ksm(ll a, ll b, ll c){
    ll re=1;
    while(b){
        if(b&1) re = (re * a) % c;
        a = (a * a) % c;
        b >>= 1;
    }
    return re;
}
int main(){
    while(scanf("%lld %s %lld", &aa, bb, &cc)!=EOF){
        ll phi=getPhi(cc);
        int len=strlen(bb);
        ll tmp=0;
        for(int i=0; i<len; i++){
            tmp = tmp * 10 + bb[i] - ‘0‘;
            if(tmp>=phi)    break;
        }
        if(tmp>=phi){
            tmp = 0;
            for(int i=0; i<len; i++)
                tmp = (tmp * 10 + bb[i] - ‘0‘) % phi;
            printf("%lld\n", ksm(aa, tmp+phi, cc));
        }
        else    printf("%lld\n", ksm(aa, tmp, cc));
    }
    return 0;
}

fzu1759 Super A^B mod C 扩展欧拉定理降幂

标签:std   splay   while   欧拉定理   eof   markdown   post   iostream   UI   

原文地址:https://www.cnblogs.com/poorpool/p/8137960.html

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