cf 570B Simple Game 水题

链接:点击打开链接

B. Simple Game
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Examples
Input
3 1
Output
2
Input
4 3
Output
2
Note

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.

题意:给定n和m,找到一个数a,使 几率最大

思路:a在1-n之间,m已知,使a到c的距离小于m到c的距离

如果2m>n,则m位于靠近n的一侧,此时只要取<m的数即可,同理,2m<n,则m位于靠近1的一侧,此时只要取>m的数即可

水题,但还是要写,因为自己绝对值这方面不怎么理解,比赛时也是误打误撞写出来的

代码:

#include<stdlib.h>
#include<stdio.h>
#include<cmath>
#include<algorithm>
#include<string>
#include<string.h>
#include<set>
#include<queue>
#include<stack>
#include<vector>
#include<functional> 
#include<map>
using namespace std;
const int maxn = 200 + 10;
const int INF = (int)1e9;

int n, m;
int c, a;
判断|c-a|<|c-m|
int main()
{
	while (scanf("%d %d", &n, &m) != EOF) {
		if (n == 1)
			printf("1\n");//!!!
		else {
			if (n >= m * 2)
				printf("%d\n", m + 1);
			else 
				printf("%d\n", m - 1);
		}
	}
	//system("pause");
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
CF香水猫是一个多功能的插件程序,它具有开源的特点。开源意味着该程序的源代码是公开可见的,任何人都可以自由查看、使用、复制、修改、发布和分发它。 CF香水猫的开源性带来了许多好处。首先,它使得该插件的开发者能够与其他开发者合作,共同改进程序。通过开放源代码,开发者们可以相互学习、交流和分享经验,从而提高整个插件的质量和功能。 其次,开源使得用户可以自由地使用和定制CF香水猫插件。用户可以根据自己的需求修改插件的代码,添加或删除某些功能,甚至可以将其与其他插件进行结合,以满足自己的个性化需求。 第三,开源的插件更容易受到审查和监督,有助于发现和纠正潜在的问题和错误。许多开源项目都有一个庞大的社区,其中成员可以积极参与到对插件的测试和改善过程中。这样,程序的质量可以得到不断的改进和提高。 最后,开源面临的一个挑战是确保插件的安全性。由于源代码是公开的,恶意用户也可以访问它并发现潜在的漏洞。因此,开发者需要在插件中实施严格的安全措施,以保护用户的隐私和数据安全。 总而言之,CF香水猫多功能插件的开源使其具有更大的灵活性和适应性,促进了开发者和用户之间的互动和合作。然而,为了确保插件的安全性,开发者需要采取适当的安全措施。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值