【bzoj3884】上帝与集合的正确用法 欧拉函数+欧拉定理

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

【题目大意】

求2^(2^(2^(2^(2^...)))) mod p的值

【题解】

这是道神题。

来自PoPoQQQ大爷的题解

【bzoj3884】上帝与集合的正确用法 欧拉函数+欧拉定理_第1张图片

/*************
  bzoj 3884
  by chty
  2016.11.4
*************/
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
inline ll read()
{
    ll x=0,f=1;  char ch=getchar();
    while(!isdigit(ch))  {if(ch=='-')  f=-1;  ch=getchar();}
    while(isdigit(ch))  {x=x*10+ch-'0';  ch=getchar();}
    return x*f;
}
ll fast(ll a,ll b,ll mod){ll ans=1;while(b){if(b&1)ans=ans*a%mod;b/=2;a=a*a%mod;}return ans;}
ll get(ll x)
{
    ll sum=x;
    for(ll i=2;i*i<=x;i++)
        if(x%i==0)
        {
            sum=sum/i*(i-1);
            while(x%i==0)  x/=i;
        }
    if(x>1)  sum=sum/x*(x-1);
    return sum;
}
ll solve(ll p)
{
    if(p==1)  return 0;
    ll temp=0;
    while(~p&1)  p/=2,temp++;
    ll phi=get(p);
    ll re=solve(phi);
    re=(re+phi-temp%phi)%phi;
    re=(fast(2,re,p))%p;
    return re<


 

你可能感兴趣的:(【bzoj3884】上帝与集合的正确用法 欧拉函数+欧拉定理)