CF201E.Thoroughly Bureaucratic Organization

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Once nn people simultaneously signed in to the reception at the recently opened, but already thoroughly bureaucratic organization (abbreviated TBO). As the organization is thoroughly bureaucratic, it can accept and cater for exactly one person per day. As a consequence, each of nn people made an appointment on one of the next nn days, and no two persons have an appointment on the same day.

However, the organization workers are very irresponsible about their job, so none of the signed in people was told the exact date of the appointment. The only way to know when people should come is to write some requests to TBO.

The request form consists of mm empty lines. Into each of these lines the name of a signed in person can be written (it can be left blank as well). Writing a person's name in the same form twice is forbidden, such requests are ignored. TBO responds very quickly to written requests, but the reply format is of very poor quality — that is, the response contains the correct appointment dates for all people from the request form, but the dates are in completely random order. Responds to all requests arrive simultaneously at the end of the day (each response specifies the request that it answers).

Fortunately, you aren't among these nn lucky guys. As an observer, you have the following task — given nn and mm , determine the minimum number of requests to submit to TBO to clearly determine the appointment date for each person.

输入格式

The first line contains a single integer tt ( 1<=t<=10001<=t<=1000 ) — the number of test cases. Each of the following tt lines contains two integers nn and mm ( 1<=n,m<=1091<=n,m<=10^{9} ) — the number of people who have got an appointment at TBO and the number of empty lines in the request form, correspondingly.

输出格式

Print tt lines, each containing an answer for the corresponding test case (in the order they are given in the input) — the minimum number of requests to submit to TBO.

输入输出样例

  • 输入#1

    5
    4 1
    4 2
    7 3
    1 1
    42 7
    

    输出#1

    3
    2
    3
    0
    11
    

说明/提示

In the first sample, you need to submit three requests to TBO with three different names. When you learn the appointment dates of three people out of four, you can find out the fourth person's date by elimination, so you do not need a fourth request.

In the second sample you need only two requests. Let's number the persons from 11 to 44 and mention persons 11 and 22 in the first request and persons 11 and 33 in the second request. It is easy to see that after that we can clearly determine each person's appointment date regardless of the answers obtained from TBO.

In the fourth sample only one person signed up for an appointment. He doesn't need to submit any requests — his appointment date is tomorrow.

首页