Codeforces 558C Amr and Chemistry 暴力 - -

点击打开链接

Amr and Chemistry
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Amr loves Chemistry, and specially doing experiments. He is preparing for a new interesting experiment.

Amr has n different types of chemicals. Each chemical i has an initial volume of ai liters. For this experiment, Amr has to mix all the chemicals together, but all the chemicals volumes must be equal first. So his task is to make all the chemicals volumes equal.

To do this, Amr can do two different kind of operations.

  • Choose some chemical i and double its current volume so the new volume will be 2ai
  • Choose some chemical i and divide its volume by two (integer division) so the new volume will be 

Suppose that each chemical is contained in a vessel of infinite volume. Now Amr wonders what is the minimum number of operations required to make all the chemicals volumes equal?

Input

The first line contains one number n (1 ≤ n ≤ 105), the number of chemicals.

The second line contains n space separated integers ai (1 ≤ ai ≤ 105), representing the initial volume of the i-th chemical in liters.

Output

Output one integer the minimum number of operations required to make all the chemicals volumes equal.

Sample test(s)
input
3
4 8 2
output
2
input
3
3 5 6
output
5
Note

In the first sample test, the optimal solution is to divide the second chemical volume by two, and multiply the third chemical volume by two to make all the volumes equal 4.

In the second sample test, the optimal solution is to divide the first chemical volume by two, and divide the second and the third chemical volumes by two twice to make all the volumes equal 1.

给出一串数 每个数可进行乘二或除二(向下取整)操作 每次操作操作数加一

问要将所有数变成一样需要的最少操作数

由于数范围比较小

就可以直接暴力每个数进行操作后能到达的数和到达这个数需要的操作量

然后对于cnt[i]==n的数中的操作数找出最小

#include<cstdio>
#include<cstring>
#include<algorithm>
#define MAXN 222222
#define INF 0x3f3f3f3f
using namespace std;
int cnt[MAXN],step[MAXN];
int a[MAXN];
void solve(int num){
    int xx=num;
    int res=0;
    cnt[num]++;
    while(xx<=100000){
        xx*=2;
        cnt[xx]++;
        res++;
        step[xx]+=res;
    }
    xx=num,res=0;
    while(xx>1){
        if(xx&1){
            int xres=res+1;
            int xxx=xx/2;
            while(xxx<=100000){
                xxx*=2;
                xres++;
                step[xxx]+=xres;
                cnt[xxx]++;
            }
        }
        xx/=2;
        res++;
        cnt[xx]++;
        step[xx]+=res;
    }
}
int main(){
    int n;
    memset(cnt,0,sizeof(cnt));
    memset(step,0,sizeof(step));
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d",&a[i]);
    for(int i=1;i<=n;i++)
        solve(a[i]);
    int ans=INF;
    for(int i=1;i<MAXN;i++){
        if(cnt[i]==n){
            ans=min(ans,step[i]);
        }
    }
    printf("%d\n",ans);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值