CF913C.Party Lemonade

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A New Year party is not a New Year party without lemonade! As usual, you are expecting a lot of guests, and buying lemonade has already become a pleasant necessity.

Your favorite store sells lemonade in bottles of nn different volumes at different costs. A single bottle of type ii has volume 2i12^{i-1} liters and costs cic_{i} roubles. The number of bottles of each type in the store can be considered infinite.

You want to buy at least LL liters of lemonade. How many roubles do you have to spend?

输入格式

The first line contains two integers nn and LL ( 1<=n<=301<=n<=30 ; 1<=L<=1091<=L<=10^{9} ) — the number of types of bottles in the store and the required amount of lemonade in liters, respectively.

The second line contains nn integers c1,c2,...,cnc_{1},c_{2},...,c_{n} ( 1<=ci<=1091<=c_{i}<=10^{9} ) — the costs of bottles of different types.

输出格式

Output a single integer — the smallest number of roubles you have to pay in order to buy at least LL liters of lemonade.

输入输出样例

  • 输入#1

    4 12
    20 30 70 90
    

    输出#1

    150
    
  • 输入#2

    4 3
    10000 1000 100 10
    

    输出#2

    10
    
  • 输入#3

    4 3
    10 100 1000 10000
    

    输出#3

    30
    
  • 输入#4

    5 787787787
    123456789 234567890 345678901 456789012 987654321
    

    输出#4

    44981600785557577
    

说明/提示

In the first example you should buy one 8-liter bottle for 90 roubles and two 2-liter bottles for 30 roubles each. In total you'll get 12 liters of lemonade for just 150 roubles.

In the second example, even though you need only 3 liters, it's cheaper to buy a single 8-liter bottle for 10 roubles.

In the third example it's best to buy three 1-liter bottles for 10 roubles each, getting three liters for 30 roubles.

首页