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

杭电 2035 人见人爱A^B【快速幂取模】

时间:2014-11-21 01:19:47      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   数据   on   div   log   

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035

解题思路:这一题数据不大,可以用同余来做,也可以用快速幂来做

反思:定义成

#include<stdio.h>
int  quick_mod(int   a,int b,int m)
{
    int ans=1;
    while(b)
    {
        if(b&1)
        {
            ans=(ans*a)%m;
            b--;
        }
        b=b>>1;
        a=a*a%m;
    }
    return ans;
}
int main()
{
    int a,b;
    int m=1000;
    while(scanf("%d %d",&a,&b)!=EOF&&a&&b)
    {
        printf("%d\n",quick_mod(a,b,m));
    }
}

  

long long 时不能通过,不知道为啥。

 

杭电 2035 人见人爱A^B【快速幂取模】

标签:blog   http   io   ar   sp   数据   on   div   log   

原文地址:http://www.cnblogs.com/wuyuewoniu/p/4111855.html

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