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

HDU - 1061-快速幂签到题

时间:2018-11-24 21:05:16      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:public   get   stat   int()   pre   ++   tin   -o   origin   

快速幂百度百科:快速幂就是快速算底数的n次幂。其时间复杂度为 O(log?N), 与朴素的O(N)相比效率有了极大的提高。

HDU - 1061

代码实现如下:

import java.util.Scanner;

public class Main
{
    public static void main(String []args)
    {
        Scanner cin = new Scanner(System.in);
        int T = cin.nextInt();
        for(int i = 0; i < T; i++)
        {
            int N = cin.nextInt();
            System.out.println(Search(N));
        }
    }
    static int Search(int N)//快速幂的模板一般都与下面的代码相同
    {
        int ans = 1;
        int temp = N;
        while(N != 0)
        {
            if((N & 1) != 0)
            {
                ans = (ans%10)*(temp%10);
            }
            temp = (temp%10) * (temp%10);
            N = N>>1;
        }
        ans = ans%10;
        return ans;
    }
}

 

HDU - 1061-快速幂签到题

标签:public   get   stat   int()   pre   ++   tin   -o   origin   

原文地址:https://www.cnblogs.com/674001396long/p/10013223.html

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