1483 化学变换
题目来源: CodeForces
基准时间限制:1 秒 空间限制:131072 KB 分值: 20 难度:3级算法题 收藏 关注
有n种不同的化学试剂。第i种有ai升。每次实验都要把所有的化学试剂混在一起,但是这些试剂的量一定要相等。所以现在的首要任务是把这些化学试剂的量弄成相等。
有两种操作:
· 把第i种的量翻倍,即第i种的量变成2ai。
· 把第i种的量减半,除的时候向下取整,即把第i种的量变成 ⌊ ai2 ⌋ 。
现在所有的化学试剂的量已知,问最少要变换多少次,这些化学试剂的量才会相等。
样例解释:把8变成4,把2变成4。这样就需要两次就可以了。
Input
单组测试数据。
第一行有一个整数n (1 ≤ n ≤ 10^5),表示化学物品的数量。
第二行有n个以空格分开的整数ai (1 ≤ ai ≤ 10^5),表示第i种化学试剂的量。
Output
输出一个数字,表示最少的变化次数。
Input示例
3
4 8 2
Output示例
2
System Message (题目提供者)
枚举每种试剂可能出现所有体积情况
并计算变成某体积,需要多少次变换
最终只需要找出 有n种药剂能变成的体积 所需要的最小值即可
#include<iostream>
#include<stdlib.h>
#include<stdio.h>
#include<string>
#include<vector>
#include<deque>
#include<queue>
#include<algorithm>
#include<set>
#include<map>
#include<stack>
#include<time.h>
#include<math.h>
#include<list>
#include<cstring>
#include<fstream>
#include<queue>
#include<sstream>
//#include<memory.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define pii pair<int,int>
#define INF 1000000007
#define pll pair<ll,ll>
#define pid pair<int,double>
const int MAX = 1e5+5;
int a[MAX],n;
struct S{
int step,n;//变成该体积需要多少次变换 , 有多少种药剂能变成该体积
}s[MAX];//s[i]表示体积为i
void left(int k,int step){
if(k>0){
while(true){
k<<=1;
if(k>=MAX){//显然 变换次数最少的体积 不可能 > a[i]的最大值
break;
}
step+=1;
s[k].n+=1;
s[k].step+=step;
}
}
}
int slove(){
for(int i=0;i<n;++i){
int k=a[i];
int step=0;
++s[k].n;
left(k,step);
while(k){
if(k&1){
left(k>>1,step+1);
}
step+=1;
k>>=1;
++s[k].n;
s[k].step+=step;
}
}
int ans=INF;
for(int i=1;i<MAX;++i){
if(s[i].n==n){
ans=min(ans,s[i].step);
}
}
return ans;
}
int main()
{
//freopen("/home/lu/Documents/r.txt","r",stdin);
//freopen("/home/lu/Documents/w.txt","w",stdout);
scanf("%d",&n);
for(int i=0;i<n;++i){
scanf("%d",a+i);
}
printf("%d\n",slove());
return 0;
}