Aggressive cows
- 总时间限制: 1000ms 内存限制: 65536kB
- 描述
- 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. - 来源
- USACO 2005 February Gold
题目OJ链接:http://bailian.openjudge.cn/practice/2456/
题目分析:
(参考http://blog.csdn.net/wuxiushu/article/details/49158843)
题意要表达的是:把C头牛放到N个带有编号的隔间里,使得任意两头牛所在的隔间编号的最小差值最大。例如样例排完序后变成1 2 4 8 9,那么1位置放一头牛,4位置放一头牛,它们的差值为3;最后一头牛放在8或9位置都可以,和4位置的差值分别为4、5,和1位置的差值分别为7和8,不比3小,所以最大的最小值为3。
分析:这是一个最小值最大化的问题。先对隔间编号从小到大排序,则最大距离不会超过两端的两头牛之间的差值,最小值为0。所以我们可以通过二分枚举最小值来求。假设当前的最小值为x,如果判断出最小差值为x时可以放下C头牛,就先让x变大再判断;如果放不下,说明当前的x太大了,就先让x变小然后再进行判断。直到求出一个最大的x就是最终的答案。
本题的关键就在于讨论差值的大小。
代码一:
1 #include<iostream> 2 #include<algorithm> 3 #include<stdio.h> 4 #include<string.h> 5 using namespace std; 6 const int MAX = 100010; 7 int a[MAX],n,m; 8 9 bool C(int d) 10 { 11 int t = a[0],count = 1; 12 for(int i = 1;i < n;i ++) 13 { 14 if(a[i] - t >= d) 15 { 16 count ++; 17 t=a[i]; 18 if(count >= m) 19 return true; 20 } 21 } 22 return false; 23 } 24 25 26 int solve() 27 { 28 int x = 0,y = a[n-1] - a[0]; 29 while(x <= y) 30 { 31 int mid=(x+y)/2; 32 if(C(mid)) 33 x=mid + 1; 34 else 35 y=mid - 1; 36 } 37 return x - 1; 38 } 39 40 41 int main() 42 { 43 while(~scanf("%d%d",&n,&m)) 44 { 45 for(int i = 0;i < n;i ++) 46 scanf("%d",&a[i]); 47 sort(a,a+n); 48 printf("%d\n",solve()); 49 } 50 return 0; 51 }
代码二:(一点点小的改动,更好理解)

1 #include<iostream> 2 #include<algorithm> 3 #include<stdio.h> 4 #include<string.h> 5 using namespace std; 6 const int MAX = 100010; 7 int a[MAX],n,m; 8 9 bool C(int d) 10 { 11 int t = a[0],count = 1; 12 for(int i = 1;i < n;i ++) 13 { 14 if(a[i] - t >= d) 15 { 16 count ++; 17 t=a[i]; 18 if(count >= m) 19 return true; 20 } 21 } 22 return false; 23 } 24 25 26 int solve() 27 { 28 int x = 0,y = a[n-1] - a[0],ans=0; 29 while(x <= y) 30 { 31 int mid=(x+y)/2; 32 if(C(mid)) 33 { 34 ans=mid;x=mid + 1; 35 } 36 else 37 y=mid - 1; 38 } 39 return ans; 40 } 41 42 43 int main() 44 { 45 while(~scanf("%d%d",&n,&m)) 46 { 47 for(int i = 0;i < n;i ++) 48 scanf("%d",&a[i]); 49 sort(a,a+n); 50 printf("%d\n",solve()); 51 } 52 return 0; 53 }
代码三:差不多思路,主要区别在检测函数

1 #include <iostream> 2 #include<algorithm> 3 #include<stdio.h> 4 using namespace std; 5 6 const int N=100000+10; 7 long long arr[N]={0}; 8 int n,c; 9 10 bool check(long long x) 11 { 12 long long temp=arr[0]+x; 13 int count=1;//第一个牛棚必选 14 for(int i=1;i<n;i++) 15 { 16 if(arr[i]>=temp) 17 { 18 count++; 19 temp=arr[i]+x; 20 if(count==c) return true; 21 } 22 } 23 return false; 24 } 25 26 int binsearch(long long l,long long r) 27 { 28 long long mid; 29 while(l<=r) 30 { 31 mid=(l+r)/2; 32 if(check(mid)) l=mid+1; 33 else r=mid-1; 34 } 35 return l-1; 36 } 37 int binsearch2(long long l,long long r) 38 { 39 long long mid;int ans=0; 40 while(l<=r) 41 { 42 mid=(l+r)/2; 43 if(check(mid)) 44 { 45 ans=mid;l=mid+1; 46 } 47 else r=mid-1; 48 } 49 return ans; 50 } 51 int main() 52 { 53 while(~scanf("%d%d",&n,&c)) 54 { 55 for(int i=0;i<n;i++) 56 scanf("%lld",&arr[i]); 57 sort(arr,arr+n); 58 printf("%d\n",binsearch2(0,arr[n-1]-arr[0])); 59 } 60 return 0; 61 }
binsearch两个函数都可以用。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 如何调用 DeepSeek 的自然语言处理 API 接口并集成到在线客服系统
· 【译】Visual Studio 中新的强大生产力特性
· 2025年我用 Compose 写了一个 Todo App