Created
July 26, 2018 11:18
-
-
Save hanjae-jea/b3642587b16f27164e264dffbd0b8842 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<algorithm> | |
using namespace std; | |
struct point {int x, y;}; | |
int dist(point &p, point &q) {return (p.x-q.x)*(p.x-q.x)+(p.y-q.y)*(p.y-q.y);} | |
bool cmpPointX(point &p, point &q) {return p.x < q.x;} | |
bool cmpPointY(point &p, point &q) {return p.y < q.y;} | |
int closestPair(point *P, int n) { | |
if (n == 2) return dist(P[0], P[1]); | |
if (n == 3) | |
return min({dist(P[0], P[1]), dist(P[1], P[2]), dist(P[2], P[0])}); | |
int line = (P[n/2-1].x+P[n/2].x)/2; | |
int d = min(closestPair(P, n/2), closestPair(P+n/2, n-n/2)); | |
point Mid[n]; | |
int midN = 0; | |
for (int i=0; i<n; i++) { | |
int t = line-P[i].x; | |
if (t*t <= d) Mid[midN++] = P[i]; | |
} | |
sort(Mid, Mid+midN, cmpPointY); | |
for (int i=0; i<midN; i++) { | |
for (int j=i+1; j<midN && j<=i+6; j++) { | |
d = min(d, dist(Mid[i], Mid[j])); | |
} | |
} | |
return d; | |
} | |
int main(void) { | |
int n; | |
scanf("%d", &n); | |
point P[n]; | |
for (int i=0; i<n; i++) scanf("%d %d", &P[i].x, &P[i].y); | |
sort(P, P+n, cmpPointX); | |
printf("%d\n", closestPair(P, n)); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment