CodeForces 760B. Frodo and pillows(二分)

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

n hobbits are planning to spend the night at Frodo's house. Frodo has n beds standing in a row and m pillows (n ≤ m). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as many pillows as possible. Of course, it's not always possible to share pillows equally, but any hobbit gets hurt if he has at least two pillows less than some of his neighbors have.

Frodo will sleep on the k-th bed in the row. What is the maximum number of pillows he can have so that every hobbit has at least one pillow, every pillow is given to some hobbit and no one is hurt?

Input

The only line contain three integers nm and k (1 ≤ n ≤ m ≤ 109, 1 ≤ k ≤ n) — the number of hobbits, the number of pillows and the number of Frodo's bed.

Output

Print single integer — the maximum number of pillows Frodo can have so that no one is hurt.

Examples

input

Copy

4 6 2

output

Copy

2

input

Copy

3 10 3

output

Copy

4

input

Copy

3 6 1

output

Copy

3

Note

In the first example Frodo can have at most two pillows. In this case, he can give two pillows to the hobbit on the first bed, and one pillow to each of the hobbits on the third and the fourth beds.

In the second example Frodo can take at most four pillows, giving three pillows to each of the others.

In the third example Frodo can take three pillows, giving two pillows to the hobbit in the middle and one pillow to the hobbit on the third bed.

 

代码:

 

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n,m,k;
int judge(ll mid)
{
	ll sum=0;
	if(k>=mid)  //左边的枕头比床少,枕头数从左边递减至1 
    {
        sum+=(1+mid)*mid/2;//求和范围:1-mid 
        sum+=(k-mid);//再加上空出来的床上的枕头(初值即为1) 
    }
    if(k<mid) {//左边的枕头比床多,求和范围为1-k 
        sum+=((mid-k+1)+mid)*k/2;
    }
 
    if(k+(mid-1)<=n) {//右边的枕头比床少,求和范围:1-mid 
        sum+=(1+mid)*mid/2;
        sum+=n-(k+(mid-1));//加上空出来的床上的枕头 
    }
 
    if(k+(mid-1)>n) {//右边的枕头比床多,求和范围:k-n 
        sum+=(mid+(mid-(n-k)))*(n-k+1)/2;
    }
	if((sum-mid)<=m)
		return 1;
	else
		return 0;
}
int main()
{
	cin>>n>>m>>k;
	ll l=1,r=m,mid,ans;
	
		while(l<=r)
		{
			mid=(l+r)/2;
			if(judge(mid))
			{
				l=mid+1;ans=mid;
			}
			else
				r=mid-1;
		
		}cout<<ans<<endl;
	
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ksuper&

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值