Preparando MOJI

Karen and Neighborhood

2000ms 524288K

Description:

It's been long after the events of the previous problems, and Karen has now moved on from student life and is looking to relocate to a new neighborhood.

The neighborhood consists of n houses in a straight line, labelled 1 to n from left to right, all an equal distance apart.

Everyone in this neighborhood loves peace and quiet. Because of this, whenever a new person moves into the neighborhood, he or she always chooses the house whose minimum distance to any occupied house is maximized. If there are multiple houses with the maximum possible minimum distance, he or she chooses the leftmost one.

Note that the first person to arrive always moves into house 1.

Karen is the k-th person to enter this neighborhood. If everyone, including herself, follows this rule, which house will she move into?

Input:

The first and only line of input contains two integers, n and k (1 ≤ k ≤ n ≤ 1018), describing the number of houses in the neighborhood, and that Karen was the k-th person to move in, respectively.

Output:

Output a single integer on a line by itself, the label of the house Karen will move into.

Sample Input:

6 4

Sample Output:

2

Sample Input:

39 3

Sample Output:

20

Note:

In the first test case, there are 6 houses in the neighborhood, and Karen is the fourth person to move in:

  1. The first person moves into house 1.
  2. The second person moves into house 6.
  3. The third person moves into house 3.
  4. The fourth person moves into house 2.

In the second test case, there are 39 houses in the neighborhood, and Karen is the third person to move in:

  1. The first person moves into house 1.
  2. The second person moves into house 39.
  3. The third person moves into house 20.

Informação

Codeforces

Provedor Codeforces

Código CF815E

Tags

binary searchconstructive algorithmsimplementation

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:16:05

Relacionados

Nada ainda