Raising Modulo Numbers POJ 1995(快速幂模板)
Posted vbel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Raising Modulo Numbers POJ 1995(快速幂模板)相关的知识,希望对你有一定的参考价值。
原题
题目分析
快速幂模板题,依题意套个求模快速幂,然后答案边加边模即可.
代码
1 #include <cstdio> 2 #include <cstdlib> 3 #include <iostream> 4 #include <algorithm> 5 #include <utility> 6 #include <ctime> 7 #include <cmath> 8 #include <cstring> 9 #include <string> 10 #include <stack> 11 #include <queue> 12 #include <vector> 13 #include <set> 14 #include <map> 15 16 using namespace std; 17 typedef long long LL; 18 const int INF_INT=0x3f3f3f3f; 19 const LL INF_LL=0x3f3f3f3f3f3f3f3f; 20 21 LL q_power(LL a,LL b,LL mod) 22 23 LL res=1; 24 a%=mod; 25 while(b) 26 27 if(b&1) res=(res*a)%mod; 28 a=(a*a)%mod; 29 b>>=1; 30 31 return res; 32 33 34 int main() 35 36 // freopen("black.in","r",stdin); 37 // freopen("black.out","w",stdout); 38 int t; 39 scanf("%d",&t); 40 while(t--) 41 42 int m,h; 43 scanf("%d %d",&m,&h); 44 LL res=0; 45 for(int i=0;i<h;i++) 46 47 LL a,b; 48 scanf("%lld %lld",&a,&b); 49 res=(res+q_power(a,b,m))%m; 50 51 printf("%lld\n",res); 52 53 return 0; 54
以上是关于Raising Modulo Numbers POJ 1995(快速幂模板)的主要内容,如果未能解决你的问题,请参考以下文章
POJ1995 Raising Modulo Numbers
poj 1995 Raising Modulo Numbers 题解
poj1995 Raising Modulo Numbers高速幂
poj Raising Modulo Numbers 快速幂模板