您的位置:首页 > 其它

Amr and Chemistry time limit per test

2015-07-15 14:50 134 查看
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.

#include <cstdio>
#include <algorithm>
using namespace std;

int a, n, k = 0;
const int maxn = (1<<20);
int cost[maxn], vis[maxn], tmp[maxn], Count[maxn], rec[maxn];

int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
scanf("%d", &a);

for (int i = 0; i <= 20; i++) {
int num = a>>i;
if (num == 0) continue;
for (int j = 0; num < maxn-1; num *= 2, j++) {
if (!vis[num]) {
cost[num] = i + j;
vis[num] = true;
tmp[k++] = num;
} else
cost[num] = min(i + j, cost[num]);
}
}

for (int j = 0; j < k; j++) {
vis[tmp[j]] = false;
Count[tmp[j]] += cost[tmp[j]];
rec[tmp[j]]++;
}
k = 0;
}

int ans = 0x3f3f3f3f;
for (int i = 0; i < maxn; i++)
if (rec[i] == n) ans = min(ans, Count[i]);

printf("%d\n", ans);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: