数论-快速幂
Posted sxq-study
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数论-快速幂相关的知识,希望对你有一定的参考价值。
快速幂:求 a^b % p
1 #include <iostream> 2 using namespace std; 3 4 typedef long long LL; 5 6 LL qmi(LL a, LL b, LL p){ 7 LL res = 1 % p; 8 while(b){ 9 if(b & 1)res = res * a % p; 10 a = a * a % p; 11 b >>= 1; 12 } 13 return res; 14 }
以上是关于数论-快速幂的主要内容,如果未能解决你的问题,请参考以下文章