私信TA

用户名:Praguetramp

访问量:30952

签 名:

等  级
排  名 20
经  验 20190
参赛次数 0
文章发表 130
年  龄 0
在职情况 待业
学  校
专  业

  自我简介:

aura

解题思路:     大数处理 及 快速幂

注意事项:    输入的n,m为大数时,会编译错误!!

参考代码:

import java.math.BigInteger;
import java.util.Scanner;
public class Main {
	/*
	 * a^b mod c = (a mod c)^b mod c
	 * a^b mod c = (a^2)^(b/2) mod c , b为偶数
	   a^b mod c = ((a^2)(b/2)·a) mod c , b为奇数
	 */
	public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        BigInteger n=in.nextBigInteger(),m=in.nextBigInteger(),p=in.nextBigInteger();
        BigInteger res=BigInteger.ONE;n=n.mod(p);  //缩小底数的规模
        for(BigInteger i=m;i.compareTo(BigInteger.ZERO)!=0;i=i.divide(BigInteger.valueOf(2))) {     //两个两个的取数求余,减小规模
        	if(i.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ONE)==0)        //若指数为奇数,先乘一个底数,使得后面的指数变为偶数个数
        		res = (res.multiply(n)).mod(p);
        	n =(n.multiply(n)).mod(p);      
        }
        System.out.println(res);
        in.close();
    }
}


 

0.0分

2 人评分

  评论区

  • «
  • »