#include<bits/stdc++.h>
using namespace std;
int b,p,k;
int calculate(int p)
{
int temp;
if(p==0)//b^0%k=1
return 1;
cout<<p<<endl;
temp=calculate(p/2)%k;
cout<<"safd"<<endl;
cout<<temp<<"f110"<<endl;
temp=(temp*temp)%k;//b^p%k=(b^(p/2)^2)%k
if(p%2==1)
temp=(temp*b)%k;
cout<<"fdsadffdsdfafds"<<temp<<endl;
return temp;
}
int main()
{
cin>>b>>p>>k;
int temp=b;
b%=k;
cout<<temp<<"^"<<p<<" mod "<<k<<"="<<calculate(p)<<endl;
return 0;
}
分析:
这题是因为数据规模很大,不能死算
上面编译结果可以理解递归
a. a*b%k=(a%k)*(b%k)%k 这个知识点用到的是在递归用到的 理解这个代码的递归就会知道
对于这个2 10 9 来说 是把10分成10 5 4 2 1这几个2的次方相乘起来