FZU - 1759 Super A^B mod C 降冪公式

來源:互聯網
上載者:User

標籤:os   for   io   type   amp   res   

知道降冪公式這題就很好辦了 B>=Phi(c)的時候可以降冪然後快速冪計算,否則就直接快速冪計算。

這裡的大數對小數模數直接利用模數性質按位取就行了。

//A^B %C=A^( B%phi(C)+phi(C) ) %C#include <cstdlib>#include <cstring>#include <cstdio>#include <iostream>#include<string>#include<cmath>using namespace std;typedef __int64 ll;int phi(int x){    int i,j;    int num = x;    for(i = 2; i*i <= x; i++)    {        if(x % i == 0)        {            num = (num/i)*(i-1);            while(x % i == 0)            {                x = x / i;            }        }    }    if(x != 1) num = (num/x)*(x-1);    return num;}ll quickpow(ll m,ll n,ll k){    ll ans=1;    while(n)    {        if(n&1) ans=(ans*m)%k;        n=(n>>1);        m=(m*m)%k;    }    return ans;}char tb[1000015];int main(){    ll a,nb;    int c;    while(scanf("%I64d%s%d",&a,tb,&c)!=EOF)    {        int PHI=phi(c);        ll res=0;        for(int i=0;tb[i];i++)        {            res=(res*10+tb[i]-'0');            if(res>c)break;        }        if(res<=PHI)        {            printf("%I64d\n",quickpow(a,res,c));        }        else        {            res=0;            for(int i=0;tb[i];i++)            {                res=(res*10+tb[i]-'0')%PHI;            }            printf("%I64d\n",quickpow(a,res+PHI,c));        }    }    return 0;}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.