博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二分--POJ-3258
阅读量:5228 次
发布时间:2019-06-14

本文共 3019 字,大约阅读时间需要 10 分钟。

题目

Description

Every year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. The excitement takes place on a long, straight river with a rock at the start and another rock at the end, L units away from the start (1 ≤ L ≤ 1,000,000,000). Along the river between the starting and ending rocks, N (0 ≤ N≤ 50,000) more rocks appear, each at an integral distance Di from the start (0 < Di < L).

To play the game, each cow in turn starts at the starting rock and tries to reach the finish at the ending rock, jumping only from rock to rock. Of course, less agile cows never make it to the final rock, ending up instead in the river.

Farmer John is proud of his cows and watches this event each year. But as time goes by, he tires of watching the timid cows of the other farmers limp across the short distances between rocks placed too closely together. He plans to remove several rocks in order to increase the shortest distance a cow will have to jump to reach the end. He knows he cannot remove the starting and ending rocks, but he calculates that he has enough resources to remove up to M rocks (0 ≤ MN).

FJ wants to know exactly how much he can increase the shortest distance before he starts removing the rocks. Help Farmer John determine the greatest possible shortest distance a cow has to jump after removing the optimal set of M rocks.

Input

Line 1: Three space-separated integers: L, N, and M

Lines 2..N+1: Each line contains a single integer indicating how far some rock is away from the starting rock. No two rocks share the same position.

Output

Line 1: A single integer that is the maximum of the shortest distance a cow has to jump after removing M rocks

Sample Input

25 5 2214112117

Sample Output

4

Hint

Before removing any rocks, the shortest jump was a jump of 2 from 0 (the start) to 2. After removing the rocks at 2 and 14, the shortest required jump is a jump of 4 (from 17 to 21 or from 21 to 25).

思路

题意,移除m个石子后,使相邻石子间的最短间距最大化。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const int INF = 0x3f3f3f3f;const int N = 50005;const int MOD = 1e9 + 9;#define lson l, m, rt << 1#define rson m + 1, r, rt << 1 | 1int main(){ int L, n, m; cin >> L >> n >> m; int a[N]; a[n] = L; for(int i = 0;i < n;++i) cin >> a[i]; sort(a, a + n + 1); int l = 0, r = L; //在L和原来石子间的最短距离间二分,这里偷懒,在L到0间二分 while(l <= r) { int mid = (l + r) >> 1; int cnt = 0, s = 0;//计算移除的石子个数 for(int i = 0;i <= n;++i) { if(mid >= a[i] - s)//满足这条不等式时,即表示石子i可移除,同时累加一段距离至不能移除 cnt++; else//累加至一段距离到不满足以上不等式时,就要从新的起点开始累加 s = a[i]; } if(cnt <= m)//这里要取=,因为当我们取走最后一个石子的时候,因为石子被取走,所以不能得出答案 //而这时候就是让cnt==m,把l加到最大值,就是刚好不能移除多一个石子的距离,就是答案了 l = mid + 1; else r = mid - 1; } cout << l << endl; return 0;}

参考

转载于:https://www.cnblogs.com/shuizhidao/p/10446929.html

你可能感兴趣的文章
关于收费软件
查看>>
1001. 害死人不偿命的(3n+1)猜想 (15)
查看>>
点至直线的距离和垂足点计算
查看>>
getopt_long
查看>>
Docker探索系列2之镜像打包与DockerFile
查看>>
HTML5中File
查看>>
如何在ashx页面获取Session值
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
open_links_per_instance 和 open_links 参数说明
查看>>
HTML-虚线框3例
查看>>
JZOJ 4742. 单峰
查看>>
常用正则表达式大全
查看>>
Docker,win10
查看>>
JavaScript中undefined和not defined 的区别
查看>>
yii框架学习(一)
查看>>
写给程序员的 10不该
查看>>
兼容所有浏览器的实时监听输入的解决方案(转)
查看>>
OOP、AOP 、IoC和DI、ORM 概念
查看>>
Android:让Link始终保持在程序的WebView中跳转
查看>>