301429: CF269A. Magical Boxes

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Magical Boxes

题意翻译

给你$n$种**不同**的盒子,每种盒子由两个数据描述—— $k,a$ , $k$ 表示这个盒子的边长为 $2^k$,$a$ 表示这种盒子有 $a$ 个,盒子里可以放盒子,但同一个盒子里放的盒子不能重叠,但不能放和它一样大的盒子,请找出一个最小的盒子,使得可以在这个盒子里放下所有盒子。

题目描述

Emuskald is a well-known illusionist. One of his trademark tricks involves a set of magical boxes. The essence of the trick is in packing the boxes inside other boxes. From the top view each magical box looks like a square with side length equal to $ 2^{k} $ ( $ k $ is an integer, $ k>=0 $ ) units. A magical box $ v $ can be put inside a magical box $ u $ , if side length of $ v $ is strictly less than the side length of $ u $ . In particular, Emuskald can put 4 boxes of side length $ 2^{k-1} $ into one box of side length $ 2^{k} $ , or as in the following figure: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF269A/80c511ed150137d08b669bf5e500bfa82c8a8fe8.png)Emuskald is about to go on tour performing around the world, and needs to pack his magical boxes for the trip. He has decided that the best way to pack them would be inside another magical box, but magical boxes are quite expensive to make. Help him find the smallest magical box that can fit all his boxes.

输入输出格式

输入格式


The first line of input contains an integer $ n $ ( $ 1<=n<=10^{5} $ ), the number of different sizes of boxes Emuskald has. Each of following $ n $ lines contains two integers $ k_{i} $ and $ a_{i} $ ( $ 0<=k_{i}<=10^{9} $ , $ 1<=a_{i}<=10^{9} $ ), which means that Emuskald has $ a_{i} $ boxes with side length $ 2^{k_{i}} $ . It is guaranteed that all of $ k_{i} $ are distinct.

输出格式


Output a single integer $ p $ , such that the smallest magical box that can contain all of Emuskald’s boxes has side length $ 2^{p} $ .

输入输出样例

输入样例 #1

2
0 3
1 5

输出样例 #1

3

输入样例 #2

1
0 4

输出样例 #2

1

输入样例 #3

2
1 10
2 2

输出样例 #3

3

说明

Picture explanation. If we have 3 boxes with side length 2 and 5 boxes with side length 1, then we can put all these boxes inside a box with side length 4, for example, as shown in the picture. In the second test case, we can put all four small boxes into a box with side length 2.

Input

题意翻译

给你$n$种**不同**的盒子,每种盒子由两个数据描述—— $k,a$ , $k$ 表示这个盒子的边长为 $2^k$,$a$ 表示这种盒子有 $a$ 个,盒子里可以放盒子,但同一个盒子里放的盒子不能重叠,但不能放和它一样大的盒子,请找出一个最小的盒子,使得可以在这个盒子里放下所有盒子。

加入题单

算法标签: