Codeforces 558C Amr and Chemistry(暴力+贪心)

探讨了在化学实验中,如何通过两种操作(体积翻倍或减半)使不同类型的化学物质达到相同的体积,以进行混合实验。分析了最优解的存在性和寻找方法,提供了一种算法实现思路。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题面

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.

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.

题目链接

Codeforces_558C

题目简述

把n种化学物质变成相同体积,可做两种操作:①v*=2,②v/=2(整数除法)

假如v=31,那么可以哪些体积呢?

31、62、124、248……

15、30、60、120……

7、14、28、56……

3、6、12、24……

1、2、4、8……

所以要把每种化学物质可以到达的体积处理出来,处理过程中计算操作次数。(有些体积是v永远到达不了的,比如31到不了5)

还有一个结论:最终的体积不会超过n种化学物质初始体积的最大值maxi,因为(1-maxi)中会有更优解。

程序分析

node[i].legal:能到达体积i的化学物质种数

node[i].opera_num:操作次数

对于32这样的偶数来说,32->64,64->128,128->256……

那么32->16之后就没必要再乘2,因为之前到达过32。32->16,16->32,32->64……不是最优解,会浪费时间,适时break。

程序

#include<stdio.h>
#include<iostream>
using namespace std;
#define maxn 500005
struct Node
{
    int legal;
    int opera_num;
}node[maxn];
int a[maxn];
int maxi;

void init()
{
    for(int i=0;i<maxn;i++)
    {
        node[i].legal=0;
        node[i].opera_num=0;
    }
}

void deal(int x,int num)/**当前第num种化学物质**/
{
    for(int i=0;i<=100;i++)/**初始x到达当前x需要i步**/
    {
        int temp=x;
        for(int j=0;j<=100;j++)/**当前x->temp需要j步**/
        {
            if(temp>maxi||node[temp].legal==num)/**temp体积之前到达过**/
                break;
            if(node[temp].legal==num-1)/**前num-1种化学物质都能到达temp体积**/
            {
                node[temp].legal++;
                node[temp].opera_num+=i+j;
            }
            if(temp==0)
                break;
            temp*=2;
        }
        if(temp==0)
            break;
        x/=2;
    }
}

int main()
{
    init();
    int n;
    maxi=-1;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
        maxi=max(a[i],maxi);
    }
    for(int i=0;i<n;i++)
    {
        deal(a[i],i+1);
    }
    int answer=100000000;
    for(int i=0;i<=maxi;i++)
        if(node[i].legal==n)/**n种物质都能到达**/
        {
            answer=min(answer,node[i].opera_num);
        }
    printf("%d\n",answer);
    return 0;
}

 

当前提供的引用内容并未提及关于Codeforces比赛M1的具体时间安排[^1]。然而,通常情况下,Codeforces的比赛时间会在其官方网站上提前公布,并提供基于不同时区的转换工具以便参赛者了解具体开赛时刻。 对于Codeforces上的赛事而言,如果一场名为M1的比赛被计划举行,则它的原始时间一般按照UTC(协调世界时)设定。为了得知该场比赛在UTC+8时区的确切开始时间,可以遵循以下逻辑: - 前往Codeforces官网并定位至对应比赛页面。 - 查看比赛所标注的标准UTC起始时间。 - 将此标准时间加上8小时来获取对应的北京时间(即UTC+8)。 由于目前缺乏具体的官方公告链接或者确切日期作为依据,无法直接给出Codeforces M1比赛于UTC+8下的实际发生时段。建议定期访问Codeforces平台查看最新动态更新以及确认最终版程表信息。 ```python from datetime import timedelta, datetime def convert_utc_to_bj(utc_time_str): utc_format = "%Y-%m-%dT%H:%M:%SZ" bj_offset = timedelta(hours=8) try: # 解析UTC时间为datetime对象 utc_datetime = datetime.strptime(utc_time_str, utc_format) # 转换为北京时区时间 beijing_time = utc_datetime + bj_offset return beijing_time.strftime("%Y-%m-%d %H:%M:%S") except ValueError as e: return f"错误:{e}" # 示例输入假设某场Codeforces比赛定于特定UTC时间 example_utc_start = "2024-12-05T17:35:00Z" converted_time = convert_utc_to_bj(example_utc_start) print(f"Codeforces比赛在北京时间下将是:{converted_time}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值