Empire Strikes Back(素数的理解)

本文针对一场虚构的星际战争背景下的数学问题进行了解析。问题要求找到最小的正整数n,使得n的阶乘能够整除给定的k个数字的阶乘之积。通过二分查找和素数分解的方法找到了解决方案。

In a far away galaxy there is war again. The treacherous Republic made k precision strikes of power ai on the Empire possessions. To cope with the republican threat, the Supreme Council decided to deal a decisive blow to the enemy forces.

To successfully complete the conflict, the confrontation balance after the blow should be a positive integer. The balance of confrontation is a number that looks like , where p = n! (n is the power of the Imperial strike), . After many years of war the Empire's resources are low. So to reduce the costs, n should be a minimum positive integer that is approved by the commanders.

Help the Empire, find the minimum positive integer n, where the described fraction is a positive integer.

Input

The first line contains integer k (1 ≤ k ≤ 106). The second line contains k integers a1, a2, ..., ak (1 ≤ ai ≤ 107).

Output

Print the minimum positive integer n, needed for the Empire to win.

Please, do not use the %lld to read or write 64-but integers in С++. It is preferred to use the cin, cout streams or the %I64dspecificator.

题意就是: 给定k个数字,求最小的正整数n,使得“n的阶乘”是“这k个数字的阶乘的积”的倍数。

这个题明显是可以二分的,然后就是素数p在n的阶乘中出现的次数,就是: n/p+n/p^2......,。 现在我们遇到的问题就是如何求符合情况的n

然后二分答案就行了。我们现在知道的就是阶乘相乘,就相当于他们的指数相加,就是这个东西,然后我们用一个查分的数组弄一下。

转载于:https://www.cnblogs.com/Heilce/p/6556177.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值