Amr and Chemistry

#include<cstdio>
#include<algorithm>
using namespace std;
const int maxm = 1e5 + 5;;
const int maxmm = 1e9;
int n, num, all[maxm], step[maxm];
int step1, step2, flag, num2, res = maxmm;
int main() {
scanf("%d", &n);
for(int i = 0; i < n; i++) {
    scanf("%d", &num);
    flag = 1;
    step1 = 0;
    while(num) {
        num2 = num * 2;
        step2 = step1 + 1;
        if(flag) {
        while(num2 < maxm) {
            all[num2]++;
            step[num2] += step2;
            num2 = num2 * 2;
            step2++;
        }
        flag = 0;
        }
        all[num]++;
        step[num] += step1;
        step1++;
        if(num % 2) {
            num /= 2;
            flag = 1;
        }
        else {
            num /= 2;
        }
    }
}
for(int i = 0; i < maxm; i++) {
    if(all[i] == n) res = min(res, step[i]);
}
printf("%d\n", res);
return 0;
}

  all代表出现了几次,step表示到那的步数。

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 ailiters. 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.

Examples

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.

猜你喜欢

转载自www.cnblogs.com/downrainsun/p/9747630.html