【codeforces 760B】Frodo and pillows
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard 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 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.
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.
【题目链接】:http://codeforces.com/contest/760/problem/B
【题解】
题意:
给你n个床,m个枕头.要求每个床最少分配一个枕头.
同时相邻的床的枕头个数之差要小于等于1;
要求第k张床的枕头数最大;
求这个最大值是多少.
做法:
二分枚举第k张床的枕头数为h;
这里n=7,k=4
可以看到想要让k=4的床的枕头数从1变到2,需要添加红颜色的相应枕头.
想要让k=4的床的枕头数从2变到3,需要添加绿颜色的相应的枕头;
这里从h-1变到h需要添加的枕头数
为(h-2)*2+1;
高度为h的总的枕头数是个等差数列求和问题;
看看需要的枕头数目是不是小于等于m,如果是就表示这个高度可行.继续变大.
但是这里需要注意以下情况;
即(h-2)< k-1或者(h-2)>(n-k)
这两种情况分别会左边多出一部分,右边多出一部分;
需要减掉;
这两个可能的多余部分是一个等差数列求和(首项为1,共差为1,项数为(h-2)-(k-1)和(h-2)-(n-k));
【完整代码】
#include <bits/stdc++.h>
#define LL long long
using namespace std;
LL n,m,k;
bool ok(LL h)
{
LL temp = (2*h-2)*(h-1)/2;
if (h-2<=k-1 && h-2 <= n-k)
return n + temp <= m;
if (h-2>k-1 && h-2 > n-k)
{
temp+=n;
LL temp1 = (1 + h-2-(k-1))*(h-2-(k-1))/2;
LL temp2 = (1 + h-2-(n-k))*(h-2-(n-k))/2;
return temp-temp1-temp2 <= m;
}
if (h-2>k-1 && h-2 <= n-k)
{
temp+=n;
LL temp1 = (1 + h-2-(k-1))*(h-2-(k-1))/2;
return temp-temp1<=m;
}
if (h-2<=k-1 && h-2>n-k)
{
temp+=n;
LL temp2 = (1 + h-2-(n-k))*(h-2-(n-k))/2;
return temp-temp2<=m;
}
}
int main()
{
//freopen("F:\\rush.txt","r",stdin);
cin >> n >> m >>k;
LL l = 2,r = 1+m-n;
if (r==1)
puts("1");
else
{
LL ans = 2;
while (l <= r)
{
LL m = (l+r)>>1;
if (ok(m))
{
ans = m,l = m+1;
}
else
r = m-1;
}
cout << ans << endl;
}
return 0;
}
【codeforces 760B】Frodo and pillows的更多相关文章
- Codeforces 760B:Frodo and pillows(二分)
http://codeforces.com/problemset/problem/760/B 题意:有n张床m个枕头,每张床可以有多个枕头,但是相邻的床的枕头数相差不能超过1,问第k张床最多能拥有的枕 ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【codeforces 707E】Garlands
[题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...
- 【codeforces 707C】Pythagorean Triples
[题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...
- 【codeforces 709D】Recover the String
[题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...
- 【codeforces 709B】Checkpoints
[题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...
- 【codeforces 709C】Letters Cyclic Shift
[题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...
- 【Codeforces 429D】 Tricky Function
[题目链接] http://codeforces.com/problemset/problem/429/D [算法] 令Si = A1 + A2 + ... + Ai(A的前缀和) 则g(i,j) = ...
- 【Codeforces 670C】 Cinema
[题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...
随机推荐
- Vijos——T 1164曹冲养猪
https://vijos.org/p/1164 描述 自从曹冲搞定了大象以后,曹操就开始捉摸让儿子干些事业,于是派他到中原养猪场养猪,可是曹冲满不高兴,于是在工作中马马虎虎,有一次曹操想知道母猪的数 ...
- 79.cgi硬盘查询个人信息
运行截图: 把cgi编码转为char*类型 //把cgi编码转为char*类型 char* change(char *str) { //分配内存 ); //x是tempstr的下标,y是str的下标 ...
- 1.3 Quick Start中 Step 2: Start the server官网剖析(博主推荐)
不多说,直接上干货! 一切来源于官网 http://kafka.apache.org/documentation/ Step 2: Start the server Step : 启动服务 Kafka ...
- Docker安装RabbitMQ,RabbitMQ Management使用
原文:Docker安装RabbitMQ,RabbitMQ Management使用 版权声明:本文为博主原创文章,未经博主允许不得转载.需要转载请先评论或者邮箱联系我,谢谢! https://blog ...
- 洛谷——P1021 邮票面值设计
https://www.luogu.org/problem/show?pid=1021 题目描述 给定一个信封,最多只允许粘贴N张邮票,计算在给定K(N+K≤15)种邮票的情况下(假定所有的邮票数量都 ...
- WebClient HttpWebRequest从网页中获取请求数据
WebClient HttpWebRequest //HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(urlAddress) ...
- Android 监听电量的状态
监控手机电量的变化和充电状态 在BatteryManager中有一个粘性广播,不需要BroadcastReceiver作为接收器,在注册时将传入null IntentFilter filter = n ...
- 接口如何使用(以笑话大全api为例)
接口如何使用(以笑话大全api为例) 一.总结 一句话总结:直接用ajax,或者post,get方式向接口网址请求数据,然后接收网站传过来的数据就好,和我们写网站的时候前台向后台请求数据的方式一样. ...
- Android 文件路径(/mnt/sdcard/...)、Uri(content://media/external/...)
一.URI 通用资源标志符(Universal Resource Identifier, 简称"URI"). Uri代表要操作的数据,Android上可用的每种资源 - 图像.视频 ...
- POJ 1274 The Perfect Stall || POJ 1469 COURSES(zoj 1140)二分图匹配
两题二分图匹配的题: 1.一个农民有n头牛和m个畜栏,对于每个畜栏,每头牛有不同喜好,有的想去,有的不想,对于给定的喜好表,你需要求出最大可以满足多少头牛的需求. 2.给你学生数和课程数,以及学生上的 ...