B. Frodo and pillows

17 篇文章 0 订阅

B. 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 ≤ 1091 ≤ 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
4 6 2
output
2
input
3 10 3
output
4
input
3 6 1
output
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.


到这里的,题意就不多说了。就是向n个位置堆枕头,但是要求相邻的位置的枕头数量只差不能超过1。

最直接的就是二分答案,然后判断当前的答案叠起来至少需要的被子数,如果小于等于m就是符合条件的情况。

这里计算至少需要的被子数的时候注意,有两种情况,一种情况就是类似

       1

1111111111111这种,也就是头上的枕头应该至少是1的不是0.

另外一种情况就是:

   1

 111

11111很常规的这种。

  1

111

111

111

这种。这两种其实是一种的。

总的来说就是根据二分的答案求阶梯和。

看看代码就懂了。

#include <cstdio>
#include <algorithm>
#include <vector>
#include <cmath>
using namespace std;
const int MAXN=1e5+7;
const int inf =1e9;
long long n,m,k,d1,d2;
long long check(long long mid)
{
    long long sum=0;
    //左边
    if(mid-(k-1)<1)//如果头的位置的枕头数小于1
    {
        sum+=k-mid;
        sum+=(1+mid)*mid/2;
    }
    if(mid-(k-1)>=1)//否则
    {
        sum+=(mid-(k-1)+mid)*k/2;
    }
    //右边
    if(mid-(n-k)<1) //如果头的位置的枕头数小于1
    {
        sum+=n-k+1-mid;
        sum+=(1+mid)*mid/2;
    }
    if(mid-(n-k)>=1)//否则
    {
        sum+=(mid-(n-k)+mid)*(n-k+1)/2;
    }
    if(sum-mid<=m)return 1;//mid算了两次
    else return 0;
}
int main()
{
   scanf("%I64d%I64d%I64d",&n,&m,&k);
   long long ans=0;
   long long l=1;
   long long r=m;
   while(r>=l)
   {
       long long mid=(l+r)/2;
       if(check(mid))
       {
           ans=mid;
           l=mid+1;
       }
       else r=mid-1;
   }
   printf("%I64d\n",ans);
    return 0;
}


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值