Codeforces--760B--Frodo and pillows

这是一道关于分配问题的编程题目,Frodo需要为n个hobbits分配m个枕头,每个hobbit至少需要一个枕头,并且不能比邻居少两个以上。Frodo睡在第k个床位,目标是找出最大可能的枕头分配数,使得所有条件满足。解题方法是采用以Frodo床位为中心,枕头数量递减的策略,通过二分搜索找到答案。
摘要由CSDN通过智能技术生成

题目描述:
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?
输入描述:
The only line contain three integers n, m and k (1 ≤ n ≤ m ≤ 109, 1 ≤ k ≤ n) — the number of hobbits, the number of pillows and the number of Frodo’s bed.
输出描述:
Print single integer — the maximum number of pillows Frodo can have so that no one is hurt.
输入:
4 6 2
3 10 3
3 6 1
输出:
2
4
3
题意:
n个床位,m个枕头,第k个位置最多有多少个枕头,其中相邻之间的差<=1;
题解
以k位置为中心,枕头数量向两侧递减。二分搜索答案。
代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值