302880: CF558C. Amr and Chemistry
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Amr and Chemistry
题意翻译
有n个数,你可以对每个数进行两种操作: 1. 将一个数乘以2 2. 将一个数变为其二分之一并向下取整 问最少通过多少次操作可以将这些数的值变为全部相同。题目描述
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 $ a_{i} $ 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 $ 2a_{i} $ - Choose some chemical $ i $ and divide its volume by two (integer division) so the new volume will be ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF558C/2af906789c62f9845274f856d2f941f2357aa169.png) 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?输入输出格式
输入格式
The first line contains one number $ n $ ( $ 1<=n<=10^{5} $ ), the number of chemicals. The second line contains $ n $ space separated integers $ a_{i} $ ( $ 1<=a_{i}<=10^{5} $ ), representing the initial volume of the $ i $ -th chemical in liters.
输出格式
Output one integer the minimum number of operations required to make all the chemicals volumes equal.
输入输出样例
输入样例 #1
3
4 8 2
输出样例 #1
2
输入样例 #2
3
3 5 6
输出样例 #2
5