-
Notifications
You must be signed in to change notification settings - Fork 0
/
closest_pair.cpp
167 lines (156 loc) · 4.04 KB
/
closest_pair.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include <iostream>
#include <cmath>
#include <cfloat>
using namespace std;
// using namespace listaEncC;
typedef struct {
double x;
double y;
}ponto;
/* Tentativa frustrada de fazer tudo na mão.
* Maldita conversão de ponteiro. */
// typedef ponto* Pponto;
// typedef struct list {
// int pos= -1;
// ponto stPonto;
// struct list* proxPonto;
// }listaEnc;
// typedef list* Plist;
// class listaEncC {
// int tam;
// Plist a;
// Plist aUltima;
// public:
// listaEncC() {
// tam = 0;
// a = NULL;
// aUltima = a;
// }
// void append(ponto *p) {
// tam++;
// Plist aux = (Plist)malloc(sizeof(Plist));
// if (a == NULL) {
// aux->stPonto = (*p);
// aux->proxPonto = NULL;
// aux->pos++;
// a = aux;
// aUltima = a;
// }
// else {
// aux->stPonto = (*p);
// aux->proxPonto = NULL;
// aux->pos++;
// aUltima->proxPonto = aux;
// aUltima = aUltima->proxPonto;
// }
// }
// void printList() {
// Plist aux = a;
// cout << "A lista tem os seguintes pontos:" << endl;
// while (aux != NULL) {
// cout << "X: " << aux->stPonto.x;
// cout << " ";
// cout << "Y: " << aux->stPonto.y << endl;
// aux = aux->proxPonto;
// }
// }
// ponto get(int i) {
// Plist aux = a;
// while (aux != NULL || aux->pos != i) {
// aux = aux->proxPonto;
// }
// ponto p = aux->stPonto;
// return p;
// }
// void clear() {
// Plist aux;
// tam = 0;
// while (aux != NULL) {
// aux = a;
// a = a->proxPonto;
// free(aux);
// }
// a = NULL;
// }
// Plist getList(){
// return a;
// }
// };
double dist(ponto a, ponto b) {
return sqrt((a.x - b.x)*(a.x - b.x) +
(a.y - b.y)*(a.y - b.y));
}
int cmpY (const void *a, const void *b) {
ponto *pa = (ponto*) a;
ponto *pb = (ponto*) b;
return (pa->y - pb->y);
}
int cmpX (const void *a, const void *b) {
ponto *pa = (ponto*) a;
ponto *pb = (ponto*) b;
return (pa->x - pb->x);
}
double closest_pair_bf (ponto* arr, int i, int f) {
double minimun = DBL_MAX, min1;
register int j, k;
for (j = i; j < f; j++) {
for (k = j+1; k < f; k++) {
min1 = dist(arr[j], arr[k]);
if (min1 < minimun) minimun = min1;
}
}
return minimun;
}
double closest_pair(ponto* arrX, int i, int f) {
register int k, j;
if ((f-i) <= 2) {
return closest_pair_bf(arrX, i, f);
}
int m = (i+f)/2;
double d1 = closest_pair(arrX, i, m + 1);
double d2 = closest_pair(arrX, m + 1, f);
double dmin = min(d1, d2);
//vector<ponto> arrY(20001);
ponto arrY[10001];
int ayi = 0;
for (k = i; k < f; k++) {
if (abs(arrX[k].x - arrX[m].x) < dmin) {
// arrY.push_back(arrX[k]);
arrY[ayi++] = arrX[k];
}
}
int size = ayi;//arrY.size();
qsort(&arrY, size, sizeof(ponto), cmpY);
for (k = 0; k < size; k++) {
for (j = k + 1; j < size; j++) {
if (abs(arrY[k].y - arrY[j].y) > dmin) {
break;
}
double v = dist(arrY[k], arrY[j]);
if (v < dmin) dmin = v;
}
}
return dmin;
}
int main() {
int in;
ponto pX[10001];
ponto xy;
cin >> in;
while (in != 0) {
// cout << pX.size() << " - " << pX.capacity() << endl;
for (register int i = 0; i < in; i++) {
cin >> xy.x >> xy.y;
pX[i] = xy;
}
qsort(&pX, in, sizeof(ponto), cmpX);
double mindist = closest_pair(pX, 0, in);
if (mindist < 10000.0000) {
printf("%.4lf\n", mindist);
}
else cout << "INFINITY" << endl;
cin >> in;
// cout << pX.size() << " " << pX.capacity() << endl;
}
return 0;
}