CF1578E.Easy Scheduling

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Eonathan Eostar decided to learn the magic of multiprocessor systems. He has a full binary tree of tasks with height hh . In the beginning, there is only one ready task in the tree — the task in the root. At each moment of time, pp processes choose at most pp ready tasks and perform them. After that, tasks whose parents were performed become ready for the next moment of time. Once the task becomes ready, it stays ready until it is performed.

You shall calculate the smallest number of time moments the system needs to perform all the tasks.

输入格式

The first line of the input contains the number of tests tt ( 1t51051 \leq t \leq 5\cdot 10^5 ). Each of the next tt lines contains the description of a test. A test is described by two integers hh ( 1h501 \leq h \leq 50 ) and pp ( 1p1041 \leq p \leq 10^4 ) — the height of the full binary tree and the number of processes. It is guaranteed that all the tests are different.

输出格式

For each test output one integer on a separate line — the smallest number of time moments the system needs to perform all the tasks.

输入输出样例

  • 输入#1

    3
    3 1
    3 2
    10 6

    输出#1

    7
    4
    173

说明/提示

Let us consider the second test from the sample input. There is a full binary tree of height 33 and there are two processes. At the first moment of time, there is only one ready task, 11 , and p1p_1 performs it. At the second moment of time, there are two ready tasks, 22 and 33 , and the processes perform them. At the third moment of time, there are four ready tasks, 44 , 55 , 66 , and 77 , and p1p_1 performs 66 and p2p_2 performs 55 . At the fourth moment of time, there are two ready tasks, 44 and 77 , and the processes perform them. Thus, the system spends 44 moments of time to perform all the tasks.

首页