A10052 | Simple Game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One day Misha and Andrew were playing a very simple game. First, each player chooses an integer in the range from $1$ to $n$ . Let's assume that Misha chose number $m$ , and Andrew chose number $a$ .
Then, by using a random generator they choose a random integer $c$ in the range between $1$ and $n$ (any integer from $1$ to $n$ is chosen with the same probability), after which the winner is the player, whose number was closer to $c$ . The boys agreed that if $m$ and $a$ are located on the same distance from $c$ , Misha wins.
Andrew wants to win very much, so he asks you to help him. You know the number selected by Misha, and number $n$ . You need to determine which value of $a$ Andrew must choose, so that the probability of his victory is the highest possible.
More formally, you need to find such integer $a$ ( $1<=a<=n$ ), that the probability that  is maximal, where $c$ is the equiprobably chosen integer from $1$ to $n$ (inclusive).
Then, by using a random generator they choose a random integer $c$ in the range between $1$ and $n$ (any integer from $1$ to $n$ is chosen with the same probability), after which the winner is the player, whose number was closer to $c$ . The boys agreed that if $m$ and $a$ are located on the same distance from $c$ , Misha wins.
Andrew wants to win very much, so he asks you to help him. You know the number selected by Misha, and number $n$ . You need to determine which value of $a$ Andrew must choose, so that the probability of his victory is the highest possible.
More formally, you need to find such integer $a$ ( $1<=a<=n$ ), that the probability that  is maximal, where $c$ is the equiprobably chosen integer from $1$ to $n$ (inclusive).
输入格式
The first line contains two integers $n$ and $m$ ( $1<=m<=n<=10^{9}$ ) — the range of numbers in the game, and the number selected by Misha respectively.
输出格式
Print a single number — such value $a$ , 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 $c$ is equal to $2$ or $3$ . The probability that Andrew wins is $2/3$ . If Andrew chooses $a=3$ , the probability of winning will be $1/3$ . If $a=1$ , the probability of winning is $0$ .
In the second sample test: Andrew wins if $c$ is equal to $1$ and $2$ . The probability that Andrew wins is $1/2$ . For other choices of $a$ the probability of winning is less.
In the second sample test: Andrew wins if $c$ is equal to $1$ and $2$ . The probability that Andrew wins is $1/2$ . For other choices of $a$ the probability of winning is less.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted