bzoj3884: 上帝與集合的正確用法

來源:互聯網
上載者:User

標籤:mes   ring   情況   type   a*   ==   mat   ret   nbsp   

這個就是指數對phi模數啊

然而歐拉定理只在(a,p)==1的情況下成立

但是有一個很強的推論,就是當x>phi(p)的時候a^x%p=a^(x%phi(p)+phi(p))成立

那麼這題就秒了

線篩phi會T T_T

#include<cstdio>#include<iostream>#include<cstring>#include<cstdlib>#include<algorithm>#include<cmath>using namespace std;typedef long long LL;int quick_pow(int A,int p,int mod){    int ret=1;    while(p>0)    {        if(p%2==1)ret=(LL)ret*A%mod;        A=(LL)A*A%mod;p/=2;    }    return ret;}int phi(int x){    int ret=x;    for(int i=2;i*i<=x;i++)        if(x%i==0)        {            ret=ret/i*(i-1);            while(x%i==0)x/=i;        }    if(x!=1)ret=ret/x*(x-1);    return ret;}int solve(int p){    if(p==1)return 0;    int pp=phi(p);    return quick_pow(2,solve(pp)+pp,p);}int main(){    freopen("a.in","r",stdin);    freopen("a.out","w",stdout);    int T;    scanf("%d",&T);    while(T--)    {        int p;        scanf("%d",&p);        printf("%d\n",solve(p));    }    return 0;}

 

bzoj3884: 上帝與集合的正確用法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.