*HDU 1007 计算几何

Quoit Design

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 48729    Accepted Submission(s): 12823


Problem Description
Have you ever played quoit in a playground? Quoit is a game in which flat rings are pitched at some toys, with all the toys encircled awarded.
In the field of Cyberground, the position of each toy is fixed, and the ring is carefully designed so it can only encircle one toy at a time. On the other hand, to make the game look more attractive, the ring is designed to have the largest radius. Given a configuration of the field, you are supposed to find the radius of such a ring.

Assume that all the toys are points on a plane. A point is encircled by the ring if the distance between the point and the center of the ring is strictly less than the radius of the ring. If two toys are placed at the same point, the radius of the ring is considered to be 0.
 
Input
The input consists of several test cases. For each case, the first line contains an integer N (2 <= N <= 100,000), the total number of toys in the field. Then N lines follow, each contains a pair of (x, y) which are the coordinates of a toy. The input is terminated by N = 0.
 
Output
For each test case, print in one line the radius of the ring required by the Cyberground manager, accurate up to 2 decimal places.
 
Sample Input
2
0 0 1 1
2
1 1 1 1
3
-1.5 0 0 0 0 1.5 0
 
Sample Output
0.71
0.00
0.75
 
Author
CHEN, Yue
 
Source
 
题意:
求点集中相距最小的两个点,他们之间的距离的一半。
代码:
 1 //分治法求最近点对模板。详解《算法导论》610页。//至于将y坐标只预排序一次怎么写呢。
 2 #include<iostream>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<cmath>
 6 #include<algorithm>
 7 using namespace std;
 8 int n;
 9 int a[100005];
10 struct nod
11 {
12     double x,y;
13 }p[100005];
14 bool cmpx(nod p1,nod p2)
15 {
16     return p1.x<p2.x;
17 }
18 bool cmpy(int a1,int a2)
19 {
20     return p[a1].y<p[a2].y;
21 }
22 double dis(int s,int e)
23 {
24     return sqrt((p[s].x-p[e].x)*(p[s].x-p[e].x)+(p[s].y-p[e].y)*(p[s].y-p[e].y));
25 }
26 double Min(double a1,double a2,double a3)
27 {
28     return a1<a2?(a1<a3?a1:a3):(a2<a3?a2:a3);
29 }
30 double fenzhi(int s,int e)
31 {
32     if(s+1==e)
33     return dis(s,e);
34     if(s+2==e)
35     return Min(dis(s,s+1),dis(s,e),dis(s+1,e));
36     int mid=(s+e)>>1;
37     double ans=min(fenzhi(s,mid),fenzhi(mid+1,e));
38     int k=0;
39     for(int i=s;i<=e;i++)
40     {
41         if(fabs(p[i].x-p[mid].x)<ans)
42         a[k++]=i;
43     }
44     sort(a,a+k,cmpy);
45     for(int i=0;i<k;i++)
46     for(int j=i+1;j<=i+7&&j<k;j++)
47     {
48         if(p[a[j]].y-p[a[i]].y>=ans) break;
49         else ans=min(ans,dis(a[i],a[j]));
50     }
51     return ans;
52 }
53 int main()
54 {
55     while(scanf("%d",&n)&&n)
56     {
57         for(int i=0;i<n;i++)
58         scanf("%lf%lf",&p[i].x,&p[i].y);
59         sort(p,p+n,cmpx);
60         double ans=fenzhi(0,n-1);
61         printf("%.2lf
",ans/2);
62     }
63     return 0;
64 }
原文地址:https://www.cnblogs.com/--ZHIYUAN/p/6081446.html