Problem G
Maximum Choice
Bryan is a passenger on a voyage to a distant planet. Like the other passengers he awaits in cryosleep. However, due to a malfunction he awoke early and finds himself awake and alone. The ship’s sophisticated navigation AI, ChatHAL, is responsible for waking passengers.
It appears that ChatHAL wants to play a game with Bryan. The game is simple: ChatHAL has hidden the key to his cryopod beneath one of the other pods. It is Bryan’s job to guess and find that pod and retrieve the key to go back to cryosleep.
There are
There is a slight problem however:
Input
Input consists of the space-separated integers
Output
Return the maximum amount of attempts Bryan would need if he guessed optimally.
Sample Input 1 | Sample Output 1 |
---|---|
10 1 |
4 |
Sample Input 2 | Sample Output 2 |
---|---|
1000 2 |
7 |