平面上的最接近点对
http://218.5.5.242:9018/JudgeOnline/problem.php?id=1431
题目描述
给定平面上n个点,找出其中的一对点的距离,使得在这n个点的所有点对中,该距离为所有点对中最小的。
输入
第一行:n;2≤n≤60000 接下来n行:每行两个实数:x y,表示一个点的行坐标和列坐标,中间用一个空格隔开。
输出
仅一行,一个实数,表示最短距离,精确到小数点后面4位。
题解
随机分块可水
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
#include<iostream> #include<cstdio> #include<algorithm> #include<cmath> #include<queue> #include<vector> #include<map> #include<cstdlib> #define inf 1000000000 #define linf 90000000000LL #define ll long long using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int n,block,cnt; double ans=1e60; struct P{double x,y;}p[60005]; double dis(P a,P b) { return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y); } bool operator <(P a,P b) { return a.x<b.x||(a.x==b.x&&a.y<b.y); } P rotate(P a,double x) { return (P){a.x*cos(x)-a.y*sin(x),a.y*cos(x)+a.x*sin(x)}; } void cal(int a,int b) { for(int i=a;i<=b;i++) for(int j=i+1;j<=b;j++) ans=min(ans,dis(p[i],p[j])); } void solve() { double t=rand()/10000; for(int i=1;i<=n;i++) p[i]=rotate(p[i],t); sort(p+1,p+n+1); for(int i=1;i<=cnt;i++) { int t1=block*(i-1)+1,t2=block*i; t2=min(t2,n); cal(t1,t2); } } int main() { n=read(); block=sqrt(n)+10; cnt=n/block+(n%block!=0); for(int i=1;i<=n;i++) p[i].x=read(),p[i].y=read(); solve(); printf("%.4lf",sqrt(ans)); return 0; } |
Subscribe