算法打卡之快速幂
2021/11/26 17:11:06
本文主要是介绍算法打卡之快速幂,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
例题1:快速幂
给定 n 组 ai,bi,pi,对于每组数据,求出
的值。
输入格式
第一行包含整数 n。
接下来 n 行,每行包含三个整数 ai,bi,pi。
输出格式
对于每组数据,输出一个结果,表示
的值。
每个结果占一行。
数据范围
1≤n≤100000,
1≤ai,bi,pi≤2×109
输入样例:
2 3 2 5 4 3 9
输出样例:
4 1
答案:
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static int qmi(long a, long b, long p) { long res = 1; while (b > 0) { if ((b & 1) > 0) res = Math.floorMod(res * a, p); b = b >> 1; a = (Math.floorMod(a * a, p)); } return (int) res; } public static void main(String[] args) throws Exception { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); String[] str = bufferedReader.readLine().split(" "); int n = Integer.parseInt(str[0]); for (int i = 0; i < n; i++) { str = bufferedReader.readLine().split(" "); long a = Long.parseLong(str[0]); long b = Long.parseLong(str[1]); long p = Long.parseLong(str[2]); System.out.println(qmi(a, b, p)); } } }
快速幂的思路例子如图:
(过程很复杂,代码很简单)
例题2:快速幂求逆元
给定 n 组 ai,pi,其中 pi 是质数,求 ai 模 pi 的乘法逆元,若逆元不存在则输出 impossible
。
注意:请返回在 0∼p−1 之间的逆元。
乘法逆元的定义
输入格式
第一行包含整数 n。
接下来 n 行,每行包含一个数组 ai,pi,数据保证 pi 是质数。
输出格式
输出共 n 行,每组数据输出一个结果,每个结果占一行。
若 ai 模 pi 的乘法逆元存在,则输出一个整数,表示逆元,否则输出 impossible
。
数据范围
1≤n≤105,
1≤ai,pi≤2∗109
输入样例:
3 4 3 8 5 6 3
输出样例:
1 2 impossible
答案:
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static int qmi(long a, long b, long p) { long res = 1; while (b > 0) { if ((b & 1) > 0) res = Math.floorMod(res * a, p); b = b >> 1; a = (Math.floorMod(a * a, p)); } return (int) res; } public static void main(String[] args) throws Exception { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); String[] str = bufferedReader.readLine().split(" "); int n = Integer.parseInt(str[0]); for (int i = 0; i < n; i++) { str = bufferedReader.readLine().split(" "); long a = Long.parseLong(str[0]); long p = Long.parseLong(str[1]); int t = qmi(a, p - 2, p); if (a % p != 0) System.out.println(t); else System.out.println("impossible"); } } }
这篇关于算法打卡之快速幂的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?