CodeForces 570B Simple Game

题目:

Description
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).
Input
The first line contains two integers n and m (1 ≤ m ≤ n ≤ 109
) — the range of numbers in the game, and the number selected by Misha respectively.
Output
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.
Sample Input
Input
3 1
Output
2
Input
4 3
Output
2
Hint
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.

题目大意:
两个人分别从1~n中选择一个数,一个选m,另一个选a,m已经确定。
规定一个1~n中的一个随机数c,谁选的数靠近c,谁就胜。如果距离都相同,则选m的人胜。
选a的人要胜利,请输出符合条件的a的最小值。

其实这道题仔细想也不是特别难,如果m在左边,则a就是m+1;如果m在右边,则a就是m-1.如果n和m都为1,则a为1(实际上此时是选m的赢)。

参考代码:

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;

int judge(const int n, const int m) {
    if (n == 1 && m == 1) return 1;
    else if (m > n / 2) {
        return m - 1;
    }
    else return m + 1;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    int n, m;
    cin >> n >> m;
    int ans = judge(n, m);
    cout << ans << endl;
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 11,118评论 0 23
  • 有自己的杀手锏,每个教练的拉伸方法也不一样,悦跑的琦琦、韦爵爷、陈思远、花花、善跑的张庆乐、爱跑步的面点师都是很不...
    董炳峦阅读 525评论 0 1
  • 在这个季节的这个城市,最令人愉悦的恐怕要数那遍地盛开的桂花了。无论是在小区里,还是公园中,抑或是马路上,你都会闻...
    小涡鱼阅读 326评论 0 1
  • 在你读小说的时候,如果看到一大段写景的文字,你会怎么办?我通常会直接跳过去。 因为根据我的经验,这些详细的描写景物...
    宋元舟阅读 421评论 0 1

友情链接更多精彩内容