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

bzoj千题计划264:bzoj3884: 上帝与集合的正确用法

时间:2018-03-08 02:36:25      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:return   blog   span   ace   scan   分享   img   ble   pre   

http://www.lydsy.com/JudgeOnline/problem.php?id=3884

 

技术分享图片

 

欧拉降幂公式

 

#include<cmath>
#include<cstdio>

using namespace std;

int get_phi(int p)
{
    int phi=p;
    int m=sqrt(p);
    for(int i=2;i<=m;++i)
        if(p%i==0)
        {
            phi=phi/i*(i-1);
            while(p%i==0) p/=i;
        }
    if(p>1) phi=phi/p*(p-1);
    return phi;
}

int Pow(int a,int b,int p)
{
    int res=1;
    for(;b;a=1LL*a*a%p,b>>=1)
        if(b&1) res=1LL*res*a%p;
    return res;
}

int f(int p)
{
    if(p==1) return 0;
    int phi=get_phi(p);
    return Pow(2,f(phi)+phi,p);
}

int main()
{
    int T,P;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&P);
        printf("%d\n",f(P));
    }
}

 

bzoj千题计划264:bzoj3884: 上帝与集合的正确用法

标签:return   blog   span   ace   scan   分享   img   ble   pre   

原文地址:https://www.cnblogs.com/TheRoadToTheGold/p/8525678.html

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