码迷,mamicode.com
首页 > 其他好文 > 详细

模板:快速幂

时间:2017-10-14 16:49:12      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:fast   pre   快速   color   code   logs   div   amp   nbsp   

 1 //普通快速幂
 2 typedef long long LL;
 3 LL fast_mod(LL x,LL n,LL mod){
 4     LL ans=1;
 5     while(n>0){
 6         if(n&1) ans=(ans*x)%mod;
 7         x=(x*x)%mod;
 8         n>>=1;
 9     }
10     return ans;
11 }

 

模板:快速幂

标签:fast   pre   快速   color   code   logs   div   amp   nbsp   

原文地址:http://www.cnblogs.com/Leonard-/p/7667407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!