码迷,mamicode.com
首页 > Web开发 > 详细

hdu 1061 Rightmost Digit

时间:2014-08-01 19:38:02      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   art   ar   

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

题目大意:n的n次方,输入个位数~

这里介绍一个小的算法:快速幂取模

首先,有n个数相乘,如s=a*a*a*a*a*a*a*a*a;假设b=a*a;则s=b*b*b*b*a;继续假设c=b*b;则s=c*c*a;继续假设d=c*c;则s=d*a;最后输出s。节省了时间。

bubuko.com,布布扣
 1 #include <iostream>
 2 #include <cstdio>
 3 using namespace std;
 4 
 5 int fun(int a,int b,int c)
 6 {
 7     int s=1;
 8     while (b)
 9     {
10         if (b%2==1)
11             s=s*a%c;
12         a=(a*a)%c;
13         b/=2;
14     }
15     return s;
16 }
17 int main ()
18 {
19     int t;
20     cin>>t;
21     while (t--)
22     {
23         int n;
24         cin>>n;
25         int m=fun(n%10,n,10);
26         printf ("%d\n",m);
27     }
28     return 0;
29 }
View Code

 

hdu 1061 Rightmost Digit,布布扣,bubuko.com

hdu 1061 Rightmost Digit

标签:style   blog   http   color   os   io   art   ar   

原文地址:http://www.cnblogs.com/qq-star/p/3885626.html

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