计蒜客 2018 蓝桥杯省赛 B 组模拟赛(五) D. 代码填空:快速幂

112 篇文章 7 订阅

【题目链接】:https://nanti.jisuanke.com/t/25087

【题目描述】:

一个数的整数次幂,是我们在计算中经常用到的,但是怎么可以在 O(log (n)) 的时间内算出结果呢?

代码框中的代码是一种实现,请分析并填写缺失的代码,求 x^y mod p 的结果。

import java.util.*;
public class Main {
    public static int pw(int x, int y, int p) {
        if (y == 0) {
            return 1;
        }
        int res = /*在这里填写必要的代码*/;
        if ((y & 1) != 0) {
            res = res * x % p;
        }
        return res;
    }
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int x = cin.nextInt();
        int y = cin.nextInt();
        int p = cin.nextInt();
        System.out.println(pw(x, y, p));
    }
}

【答案】:pw(x, y / 2, p) * pw(x, y / 2, p) % p

【解析】:

【代码】:

import java.util.*;
public class Main {
    public static int pw(int x, int y, int p) {
        if (y == 0) {
            return 1;
        }
        int res = pw(x, y / 2, p) * pw(x, y / 2, p) % p/*在这里填写必要的代码*/;
        if ((y & 1) != 0) {
            res = res * x % p;
        }
        return res;
    }
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int x = cin.nextInt();
        int y = cin.nextInt();
        int p = cin.nextInt();
        System.out.println(pw(x, y, p));
    }
}

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值