310661: CF1866L. Lihmuf Balling

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

Description

L. Lihmuf Ballingtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

After working at a factory (Lihmuf Sorting), Lihmuf wants to play a game with his good friend, Pak Chanek. There are $N$ boxes numbered from $1$ to $N$. The $i$-th box contains $i$ balls. Pak Chanek and Lihmuf will play a game using those boxes.

There will be $N$ turns numbered from $1$ to $N$. On each turn, Pak Chanek chooses one box and takes all balls from that box, then Lihmuf does the same thing for one box he chooses (it is possible that the two chosen boxes are the same).

Given an integer $M$. Before the game begins, Lihmuf must choose an integer $K$ satisfying $1 \leq K \leq M$. It is known that on the $j$-th turn, Pak Chanek will choose the $j$-th box, while Lihmuf will choose the $y$-th box, with $y=((j \times K - 1) \bmod N) + 1$. Help Lihmuf choose the correct value of $K$ so that he will get as many balls as possible! If there are more than one possible values of $K$ that result in the maximum total balls, find the minimum such value of $K$.

Keep in mind that each box can be chosen more than once, but after a box is chosen for the first time, the box becomes empty.

Input

The only line contains two integers $N$ and $M$ ($1 \leq N \leq 10^9$; $1 \leq M \leq 2000$) — the number of boxes and the maximum limit for the value of $K$.

Output

An integer representing the value of $K$ that will make Lihmuf get as many balls as possible. If there are more than one possible value of $K$ that result in the maximum total balls, find the minimum such value of $K$.

ExamplesInput
3 1
Output
1
Input
5 4
Output
3
Note

In the first example, if Lihmuf chooses $K=1$, the game will go as follows:

  1. Pak Chanek chooses the $1$-st box and gets $1$ ball, then Lihmuf chooses the $1$-st box and gets $0$ balls.
  2. Pak Chanek chooses the $2$-nd box and gets $2$ balls, then Lihmuf chooses the $2$-nd box and gets $0$ balls.
  3. Pak Chanek chooses the $3$-rd box and gets $3$ balls, then Lihmuf chooses the $3$-rd box and gets $0$ balls.

In total, Lihmuf gets $0+0+0=0$ balls.

The maximum total balls that can be earned by Lihmuf is $0$ because he can only choose $K=1$. Therefore, $K=1$ is the minimum possible value of $K$ that results in the maximum total balls.

In the second example, if Lihmuf chooses $K=3$, the game will go as follows:

  1. Pak Chanek chooses the $1$-st box and gets $1$ ball, then Lihmuf chooses the $3$-rd box and gets $3$ balls.
  2. Pak Chanek chooses the $2$-nd box and gets $2$ balls, then Lihmuf chooses the $1$-st box and gets $0$ balls.
  3. Pak Chanek chooses the $3$-rd box and gets $0$ balls, then Lihmuf chooses the $4$-th box and gets $4$ balls.
  4. Pak Chanek chooses the $4$-th box and gets $0$ balls, then Lihmuf chooses the $2$-nd box and gets $0$ balls.
  5. Pak Chanek chooses the $5$-th box and gets $5$ balls, then Lihmuf chooses the $5$-th box and gets $0$ balls.

In total, Lihmuf gets $3+0+4+0+0=7$ balls.

It can be obtained that $7$ is the maximum total balls that can be earned by Lihmuf. The possible values of $K$ that result in $7$ total balls are $3$ and $4$. Therefore, $K=3$ is the minimum possible value of $K$ that results in the maximum total balls.

Output

题目大意:

Lihmuf在工厂(Lihmuf Sorting)工作后,想和他的好朋友Pak Chanek玩一个游戏。有N个盒子,编号从1到N,第i个盒子里有i个球。Pak Chanek和Lihmuf将使用这些盒子进行游戏。游戏将进行N轮,从1到N编号。每一轮,Pak Chanek选择一个盒子并拿走所有球,然后Lihmuf也做同样的事情,选择他想要的一个盒子(两个选中的盒子可能是同一个)。

给定一个整数M。在游戏开始前,Lihmuf必须选择一个整数K,满足1 ≤ K ≤ M。已知在第j轮,Pak Chanek将选择第j个盒子,而Lihmuf将选择第y个盒子,其中y = ((j × K - 1) mod N) + 1。帮助Lihmuf选择正确的K值,以便他尽可能多地获得球。如果有多个可能的K值导致最大总球数,找到最小的这样的K值。

注意,每个盒子可以被选择多次,但一个盒子被第一次选中后,盒子就会变空。

输入输出数据格式:

输入:
- 一行,包含两个整数N和M(1 ≤ N ≤ 10^9; 1 ≤ M ≤ 2000),分别表示盒子的数量和K的最大限制值。

输出:
- 一个整数,表示使Lihmuf尽可能多地获得球的K的值。如果有多个可能的K值导致最大总球数,输出最小的这样的K值。题目大意: Lihmuf在工厂(Lihmuf Sorting)工作后,想和他的好朋友Pak Chanek玩一个游戏。有N个盒子,编号从1到N,第i个盒子里有i个球。Pak Chanek和Lihmuf将使用这些盒子进行游戏。游戏将进行N轮,从1到N编号。每一轮,Pak Chanek选择一个盒子并拿走所有球,然后Lihmuf也做同样的事情,选择他想要的一个盒子(两个选中的盒子可能是同一个)。 给定一个整数M。在游戏开始前,Lihmuf必须选择一个整数K,满足1 ≤ K ≤ M。已知在第j轮,Pak Chanek将选择第j个盒子,而Lihmuf将选择第y个盒子,其中y = ((j × K - 1) mod N) + 1。帮助Lihmuf选择正确的K值,以便他尽可能多地获得球。如果有多个可能的K值导致最大总球数,找到最小的这样的K值。 注意,每个盒子可以被选择多次,但一个盒子被第一次选中后,盒子就会变空。 输入输出数据格式: 输入: - 一行,包含两个整数N和M(1 ≤ N ≤ 10^9; 1 ≤ M ≤ 2000),分别表示盒子的数量和K的最大限制值。 输出: - 一个整数,表示使Lihmuf尽可能多地获得球的K的值。如果有多个可能的K值导致最大总球数,输出最小的这样的K值。

加入题单

上一题 下一题 算法标签: