BZOJ1734: [Usaco2005 feb]Aggressive cows 愤怒的牛

Posted Blue233333

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ1734: [Usaco2005 feb]Aggressive cows 愤怒的牛相关的知识,希望对你有一定的参考价值。

n<=100000个点在坐标系上,选m个点使点间最小距离最大。

二分模板??

技术分享
 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 #include<string.h>
 4 #include<algorithm>
 5 #include<math.h>
 6 //#include<iostream>
 7 using namespace std;
 8 
 9 int n,m;
10 #define maxn 100011
11 int a[maxn];
12 bool judge(int x)
13 {
14     int last=1,tot=1;
15     for (int i=2;i<=n;i++)
16         if (a[i]-a[last]>=x) tot++,last=i;
17     return tot>=m;
18 }
19 int main()
20 {
21     scanf("%d%d",&n,&m);
22     for (int i=1;i<=n;i++) scanf("%d",&a[i]);
23     sort(a+1,a+1+n);
24     int L=0,R=1e9+1;
25     while (L<R)
26     {
27         int mid=(L+R+1)>>1;
28         if (judge(mid)) L=mid;
29         else R=mid-1;
30     }
31     printf("%d\n",L);
32     return 0;
33 }
View Code

 

以上是关于BZOJ1734: [Usaco2005 feb]Aggressive cows 愤怒的牛的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1676[Usaco2005 Feb]Feed Accounting 饲料计算*

BZOJ1676: [Usaco2005 Feb]Feed Accounting 饲料计算

bzoj1733[Usaco2005 feb]Secret Milking Machine 神秘的挤奶机 二分+网络流最大流

差分bzoj 1676 [Usaco2005 Feb]Feed Accounting 饲料计算

[bzoj1733][Usaco2005 feb]Secret Milking Machine 神秘的挤奶机_网络流

[Usaco2005 Feb]Feed Accounting 饲料计算