-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmagicalLength.cpp
More file actions
107 lines (83 loc) · 2.45 KB
/
Copy pathmagicalLength.cpp
File metadata and controls
107 lines (83 loc) · 2.45 KB
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
//www.codechef.com/problems/ACM14KP1
#include "bits/stdc++.h"
using namespace std;
#define pb push_back
#define fr(i, n) for(int i = 0; i < n; i++)
#define frr(i, n) for(int i = 1; i <= n; i++)
#define dbg(x) cout << #x << " = " << x << endl
#define all(x) x.begin(),x.end()
#define ms(x, i) memset(x, i, sizeof(x))
#define p(x) cout << x << "\n"
#define pv(x) fr(i, x.size()) cout << x[i] << " \n"[i==x.size()-1]
#define f first
#define s second
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
typedef long long int ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f;
struct pt {
double x, y;
};
int n;
double min_dist;
vector<pt> a, aux;
bool cmp_x(pt &a, pt &b) {
return a.x < b.x || (a.x == b.x && a.y < b.y);
}
bool cmp_y(pt &a, pt &b) {
return a.y < b.y;
}
void upd_ans(pt &a, pt &b, pt &c) {
double d1 = (a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y);
double d2 = (a.x-c.x)*(a.x-c.x) + (a.y-c.y)*(a.y-c.y);
double d3 = (c.x-b.x)*(c.x-b.x) + (c.y-b.y)*(c.y-b.y);
double dist = sqrt(d1) + sqrt(d2) + sqrt(d3);
if (dist < min_dist)
min_dist = dist;
}
void solve(int l, int r) {
if (r-l <= 3) {
for (int i = l; i < r; i++)
for (int j = i+1; j < r; j++)
for (int k = j+1; k < r; k++)
upd_ans(a[i], a[j], a[k]);
sort(a.begin()+l, a.begin()+r, cmp_y);
return;
}
int m = (l+r)/2;
double midx = a[m].x;
solve(l, m);
solve(m, r);
merge(a.begin()+l, a.begin()+m, a.begin()+m, a.begin()+r, aux.begin(), cmp_y);
copy(aux.begin(), aux.begin()+r-l, a.begin()+l);
int aux_sz = 0;
for (int i = l; i < r; i++) {
if ((a[i].x-midx) < min_dist) {
for (int j = aux_sz-1; j >= max(0, aux_sz-7); j--)
for (int k = j-1; k >= max(0, j-7); k--)
upd_ans(a[i], aux[j], aux[k]);
aux[aux_sz++] = a[i];
}
}
}
int main() {
fastio;
cout << setprecision(6) << fixed;
int t;
cin >> t;
frr(to, t) {
cin >> n;
aux.clear(); a.clear();
aux.resize(n); a.resize(n);
fr(i, n) cin >> a[i].x >> a[i].y;
sort(a.begin(), a.end(), cmp_x);
min_dist = 10E20;
solve(0, n);
cout << "Case " << to << ": " << min_dist << endl;
}
}