codeforces 300E. Empire Strikes Back (math+midfind)

链接: http://codeforces.com/problemset/problem/300/E

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 %I64d specificator.

Sample test(s)
Input
2
1000 1000
Output
2000
Input
1
2
Output
2

大意:寻找最小的n满足   其中ai是事先给定的。

对于所涉及到的所有的因子找出对应的素因子的个数,然后以素因子的个数主遍历,寻找最小值n二分次遍历(“<=”二分),避免超时。

基础很重要!!提交了17次才对T_T

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long LL;
const int M=1e7+10;
int pre[M];
LL cnt[M];
vector<int> pv;
void getpre(){
    for(int i=2;i<M;i++){
        if(!pre[i]){
            pre[i]=i;
            pv.push_back(i);
        }
        int len=pv.size();
        for(int j=0;j<len&&i*pv[j]<M;j++){
            pre[i*pv[j]]=pv[j];
            if(i%pv[j]==0) break;
        }
    }
}
LL cal(LL m,int d){
    LL ans=0;
    while(m>=d){
        ans=ans+m/d;
        m=m/d;
    }
    return ans;
}
LL midfind(int d,LL sum){
    LL low=1,high=sum,mid,ans=sum;
    while(low<=high){
        mid=(high+low)>>1;
        if(cal(mid,d)>=cnt[d]){
            ans=mid;
            high=mid-1;
        }
        else low=mid+1;
    }
    return ans;
}
int main(){
    //freopen("cin.txt","r",stdin);
    int k,a,Max;
    getpre();
    while(cin>>k){
        memset(cnt,0,sizeof(cnt));
        Max=0;
        LL sum=0;
        for(int i=0;i<k;i++){
            scanf("%d",&a);
            cnt[a]++;
            sum+=a;
            Max=max(Max,a);
        }
        for(int i=Max-1;i>=2;i--){
            cnt[i]+=cnt[i+1];
        }
        for(int i=Max;i>=2;i--){
            if(pre[i]!=i){
                cnt[pre[i]]+=cnt[i];
                cnt[i/pre[i]]+=cnt[i];
            }
        }
        int len=pv.size();
        LL ans=1;
        for(int i=0;i<len;i++){
            ans=max(ans,midfind(pv[i],sum));
        }
        printf("%I64d\n",ans);
    }
    return 0;
}




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值