QuickPower快速幂
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QuickPower快速幂相关的知识,希望对你有一定的参考价值。
#include <iostream> #include <cstdio> using namespace std; int a,b; long long qp(int a,int b) { int t=1;int y=a; while (b) { if (b&1) t=t*y;//whether obb or not y=y*y; b=b>>1; //cout << a << " " << b << " " << t << " " << y << endl; } return(t); } int main() { scanf("%d %d",&a,&b); printf("%lld",qp(a,b)); }
以上是关于QuickPower快速幂的主要内容,如果未能解决你的问题,请参考以下文章