CF570B.Simple Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One day Misha and Andrew were playing a very simple game. First, each player chooses an integer in the range from 11 to nn . Let's assume that Misha chose number mm , and Andrew chose number aa .

Then, by using a random generator they choose a random integer cc in the range between 11 and nn (any integer from 11 to nn is chosen with the same probability), after which the winner is the player, whose number was closer to cc . The boys agreed that if mm and aa are located on the same distance from cc , Misha wins.

Andrew wants to win very much, so he asks you to help him. You know the number selected by Misha, and number nn . You need to determine which value of aa Andrew must choose, so that the probability of his victory is the highest possible.

More formally, you need to find such integer aa ( 1<=a<=n1<=a<=n ), that the probability that is maximal, where cc is the equiprobably chosen integer from 11 to nn (inclusive).

输入格式

The first line contains two integers nn and mm ( 1<=m<=n<=1091<=m<=n<=10^{9} ) — the range of numbers in the game, and the number selected by Misha respectively.

输出格式

Print a single number — such value aa , that probability that Andrew wins is the highest. If there are multiple such values, print the minimum of them.

输入输出样例

  • 输入#1

    3 1
    

    输出#1

    2
  • 输入#2

    4 3
    

    输出#2

    2

说明/提示

In the first sample test: Andrew wins if cc is equal to 22 or 33 . The probability that Andrew wins is 2/32/3 . If Andrew chooses a=3a=3 , the probability of winning will be 1/31/3 . If a=1a=1 , the probability of winning is 00 .

In the second sample test: Andrew wins if cc is equal to 11 and 22 . The probability that Andrew wins is 1/21/2 . For other choices of aa the probability of winning is less.

首页