【算法】题目分析:Aggressive Cow (POJ 2456)
题目信息
作者:不详
链接:http://poj.org/problem?id=2456
来源:PKU JudgeOnline
Aggressive cows[1]
Time Limit: 1000MS
Memory Limit: 65536K
描述
Farmer John has built a new long barn, with N (2 <= N <= 100,000) stalls. The stalls are located along a straight line at positions x1,...,xN (0 <= xi <= 1,000,000,000).
His C (2 <= C <= N) cows don't like this barn layout and become aggressive towards each other once put into a stall. To prevent the cows from hurting each other, FJ want to assign the cows to the stalls, such that the minimum distance between any two of them is as large as possible. What is the largest minimum distance?
输入
- Line 1: Two space-separated integers: N and C
- Lines 2..N+1: Line i+1 contains an integer stall location, xi
输出
- Line 1: One integer: the largest minimum distance
样例输入
5 3
1
2
8
4
9
样例输出
3
提示
OUTPUT DETAILS:
FJ can put his 3 cows in the stalls at positions 1, 4 and 8, resulting in a minimum distance of 3.
Huge input data,scanf is recommended.
题目解读与分析
(如果您已熟练掌握二分搜索,可以跳过本段与下一段,直接浏览代码)
- 这是一个搜索问题,适宜使用二分搜索
首先观察样例输入,输入的牛棚坐标不一定有序,反手一个快速排序,闷声发大财(逃
题目的意图是,给定一系列正整数 ,最大化其中任意 个数中两两之差的最小值(以下用 D 表示)。能不能直接利用输入的数据计算出这个“最大的最小值”呢?以我浅薄的智慧想不到可行的解决方案。相比起来,通过多次试探找出合理的 D 无疑更有可操作性。因此,这是一个搜索问题,或者至少将其当做一个搜索问题来对待。
- 为什么采用二分搜索?
现在我们需要在1~ 之间试出一个满足题意的 D 。
最简单粗暴的方法就是从 开始降序验证 D 是否可行,并输出第一个可行的 D,但是这样的线性搜索太慢了。输入n个牛棚的坐标,最大的计算次数就是 ,约等于 次,会超时。所以需要使用二分搜索。
- 怎么验证一个D是否可行?
如何确定一个D是否可行呢?我们只要把第一头牛放在第一个牛棚里,把第二头牛放在 D 距离以外第一个遇到的牛棚,以此类推,最后看一看能不能放得下所有的牛。显然,D 有个不可逾越的上界,就是假设所有牛在总长度上(最右牛棚 - 最左牛棚)均匀分布时的间距,这个值就是 。
二分搜索
- 如何通过二分搜索寻找最优解?
对区间[ L, R ],当中间值mid不可行时,所有比mid大的D都不可行,右界左移开始下一轮;当mid可行时,不能确定mid右侧是否还有更大的可行解,因此用一个变量暂存当前可行解,然后左界右移,开始下一轮。当二分循环结束时,暂存的可行解即为所求最优解。 - 初始右界的确定
#——#——#——#——#——#
0——1——2——3——4——5
根据植树原理,右边界,即均匀分布时的距离,等于总长度 (牛的头数 - 1) - 边界的移动
左边界右移时,如果将left更新为mid,当left与right相差1时,mid = (left + right) / 2的值总等于left,会引起死循环,所以应该将left更新为mid+1
由于数组是升序的,右边界左移时,不需考虑。想一想,这是为什么?
- 如何通过二分搜索寻找最优解?
细节说明
- 输入方式
题目中提到“Huge input data,scanf is recommended.”,因此使用scanf_s而不是cin输入 - 命名与程序结构
为了增加程序的可读性、可修改性,可以将所有变量与函数都用英文单词(一些含义明确的局部变量除外)命名,并且将二分搜索的过程、验证最小距离D可行性的过程,抽象为函数。详见参考题解 - 排序
除非题目要求或有特殊需求,否则应尽量使用内置的排序。一般来说,语言、编译器提供的排序算法更安全、更高效
参考题解
完整代码如下,仅供参考
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
//global
const int MAX_N = 100000;
const int MAX_STALL = 1000000000;
int N = 0,C = 1;
int stall[MAX_N] = {0};
//prototype
bool IsDOK(int D);
int SearchLargestMinDistance(int left, int right);
int cmpInt(const void * a, const void * b);
void Init();
int main()
{
Init();
int L = 1, R = (stall[N-1] - stall[0]) / (C - 1);
int result = SearchLargestMinDistance(L, R);
cout << result;
return 0;
}
void Init()
{
//input boundary data
cin >> N >> C;
//error check
if(N > MAX_N || N < C || C < 2)
{
cout << "Input error! Out of range." << endl;
exit(-1);
}
//input stall data and sort it
for(int i = 0;i<N;i++)
{
scanf_s("%d",&stall[i]);
if(stall[i] > MAX_STALL || stall[i] < 0)
{
cout << "Input error! Out of range." << endl;
exit(-1);
}
}
qsort(stall, N, sizeof(int), cmpInt);
}
int SearchLargestMinDistance(int left, int right)
{
//init
int mid = (left + right) / 2;
int result = 0;
//binary search
while(right - left >= 0)
{
if(IsDOK(mid))
{
left = mid + 1;
result = mid;
}
else
{
right = mid - 1;
}
mid = (left + right) / 2;
}
return result;
}
bool IsDOK(int D)
{
//init
int i = 0,p = stall[0];
int restCow = C - 1;
for(i = 1;i<N;i++)
{
if(stall[i] >= p + D)
{
p = stall[i];
restCow--;
}
}
return restCow <= 0;
}
int cmpInt(const void * a, const void * b)
{
return ( *(int*)a - *(int*)b );
}
参考
- Aggressive cows http://poj.org/problem?id=2456
【算法】题目分析:Aggressive Cow (POJ 2456)的更多相关文章
- Divide and conquer:Aggressive Cows(POJ 2456)
侵略性的牛 题目大意:C头牛最大化他们的最短距离 常规题,二分法即可 #include <iostream> #include <algorithm> #include < ...
- Aggressive cows(POJ 2456)
原题如下: Aggressive cows Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 20524 Accepted: ...
- POJ 2456 Aggressive cows (二分 基础)
Aggressive cows Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7924 Accepted: 3959 D ...
- poj 2456 Aggressive cows && nyoj 疯牛 最大化最小值 二分
poj 2456 Aggressive cows && nyoj 疯牛 最大化最小值 二分 题目链接: nyoj : http://acm.nyist.net/JudgeOnline/ ...
- [poj 2456] Aggressive cows 二分
Description Farmer John has built a new long barn, with N (2 <= N <= 100,000) stalls. The stal ...
- 二分搜索 POJ 2456 Aggressive cows
题目传送门 /* 二分搜索:搜索安排最近牛的距离不小于d */ #include <cstdio> #include <algorithm> #include <cmat ...
- POJ 2456 Aggressive cows (二分)
题目传送门 POJ 2456 Description Farmer John has built a new long barn, with N (2 <= N <= 100,000) s ...
- [POJ] 2456 Aggressive cows (二分查找)
题目地址:http://poj.org/problem?id=2456 最大化最小值问题.二分牛之间的间距,然后验证. #include<cstdio> #include<iostr ...
- POJ 2456 Aggressive cows---二分搜索法
///3.最大化最小值 /** POJ 2456 Aggressive cows Q:一排牛舍有N (2 <= N <= 100,000) 个,位置为x1,...,xN (0 <= ...
随机推荐
- 不就是语法和长难句吗—笔记总结Day1
CONTENTS 第一课 简单句 第二课 并列句 第三课 名词(短语)和名词性从句 第四课 定语和定语从句 第五课 状语和状语从句 第六课 英语的特殊结构 第一课 奋斗的开始——简单句 一.什么是英语 ...
- python编码--解码
在py3中只有两种数据类型:str bytes str: 存unicode(万国码)编码--全球通用的 bytes:存的是16进制的 1.str s='ehllo 丽庆' --->它存在内 ...
- Write a program to copy its input to its output, replacing each tab by \t, each backspace by \b, and each backslash by \\. This makes tabs and backspa
#include <stdio.h> #define DBS '\\' void main() { int c; while((c=getchar())!=EOF) { if(c=='\t ...
- 重学 Java 设计模式:实战状态模式「模拟系统营销活动,状态流程审核发布上线场景」
作者:小傅哥 博客:https://bugstack.cn - 原创系列专题文章 沉淀.分享.成长,让自己和他人都能有所收获! @ 目录 一.前言 二.开发环境 三.状态模式介绍 四.案例场景模拟 1 ...
- 无间歇文字滚动_ 原生js实现新闻无间歇性上下滚动
这篇文章主要介绍使用js实现文字无间歇性上下滚动,一些网站的公告,新闻列表使用的比较多,感兴趣的小伙伴们可以参考一下 ,代码实现如下. html+css部分: <style> #moocb ...
- python—模块optparse的用法
1.什么是optparse: 在工作中我们经常要制定运行脚本的一些参数,因为有些东西是随着我么需求要改变的,所以在为们写程序的时候就一定不能把写死,这样我们就要设置参数 optparse用于处理命令行 ...
- 央行数字货币(CBDCs)的互操作性至关重要
CBDCs(央行数字货币)将在我们的有生之年产生重大的金融转变.然而,除非这些工具吸取了法定货币的教训,否则创新将毫无意义.互操作性一直是影响CBDC采用和功能的最重要障碍之一.因此,各国央行在这一理 ...
- True Liars POJ - 1417
True Liars After having drifted about in a small boat for a couple of days, Akira Crusoe Maeda was f ...
- 师兄大厂面试遇到这条 SQL 数据分析题,差点含泪而归!
写在前面:我是「云祁」,一枚热爱技术.会写诗的大数据开发猿.昵称来源于王安石诗中一句 [ 云之祁祁,或雨于渊 ] ,甚是喜欢. 写博客一方面是对自己学习的一点点总结及记录,另一方面则是希望能够帮助更多 ...
- java 面向对象(三十八):反射(二) Class类的理解与获取Class的实例
1.Class类的理解 1.类的加载过程:程序经过javac.exe命令以后,会生成一个或多个字节码文件(.class结尾).接着我们使用java.exe命令对某个字节码文件进行解释运行.相当于将某个 ...