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

hdu2035【二分快速幂】

时间:2014-10-26 11:37:12      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   strong   sp   div   on   

  求AˆB取模。直接二分快速幂即可。比如9ˆ9=(9ˆ2)ˆ4 * 9,将B一直模2然后A自乘,复杂度long(n)。

  

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 using namespace std;
 5 
 6 int quickpow(int a, int b, int mod) {
 7     int ans = 1;
 8     while(b) {
 9         if(b & 1) {
10             ans = ans * a % mod;
11         }
12         a  = a * a % mod;
13         b >>= 1;
14     }    
15     return ans;
16 }
17 
18 int main() {
19     int a, b;
20     while(scanf("%d%d", &a, &b), a + b) {
21         printf("%d\n", quickpow(a, b, 1000));
22     }
23     return 0;
24 }
25    

 

hdu2035【二分快速幂】

标签:style   blog   color   io   os   strong   sp   div   on   

原文地址:http://www.cnblogs.com/bigbigsunrise/p/4051744.html

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