#Lutece0066. Tom's Travel

Tom's Travel

Migrated from Lutece 66 Tom's Travel

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Tom likes to travel and visit famous spots. One day he drives in a car to a strange country named BitLand and runs out of fuel, so he goes to a local gas station to fuel up his car. There are NN buckets of fuel on sale, each has a price and contains exactly 2k2^k liters of fuel, where k is specific to this bucket. In addition the worker at the station would only fuel up Tom's car if Tom buys exactly the amount of fuel equal to the volume of his car's tank.

Help Tom by giving him a fuel buying plan to minimize the amount of money he would spend.

Input

On the first line of the input is two integers NN and MM, number of buckets of fuel on sold, and the volume of Tom's tank in liters. Next NN lines each contain two numbers kk and pp, meaning this bucket contains exactly 2k2^k liters of fuel and costs pp dollars.

$0 \leq k \leq 30, 1 \leq N \leq 100000, 1 \leq M \leq 2000000000$ Prices are integers between 11 and 10001000, inclusive.Output Output on a single line the minimum cost in dollars to buy exactly MM liters of fuel. If Tom can't fulfill the worker's requirement, output -1 instead.

  • 2k2^k means 22 to the power of k, i.e. 20=12^0=1, 21=22^1=2, 22=42^2=4, 23=82^3=8, etc.

  • The volume of Tom's tank can be very huge since

Output

Output on a single line the minimum cost in dollars to buy exactly MM liters of fuel. If Tom can't fulfill the worker's requirement, output -1 instead.

Samples

3 5
0 1
1 2
2 3
4

Note

There are 33 buckets of fuel and Tom must buy exactly 55 liters of fuel. The first bucket contains 11 liter of fuel and costs 11 dollar. The second contains 22 liters and costs 22 dollars. The third contains 44 liters and costs 33 dollars. Tom can buy the first bucket and the third, for a total cost of 44 dollars.

Resources

The 5th UESTC Programming Contest Preliminary