-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate_antontrygubO_o.cpp
301 lines (251 loc) · 6.34 KB
/
template_antontrygubO_o.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <bits/stdc++.h>
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
using namespace __gnu_pbds;
using namespace std;
#define vi vector<int>
#define ll long long
#define ld long double
#define mp make_pair
#define what_is(x) cerr << #x << " is " << x << endl;
typedef tree<
int,
null_type,
less<int>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;
int p = 998244353;
int mul(int a, int b) {
return (1LL * a * b) % p;
}
int add(int a, int b) {
int s = (a+b);
if (s>=p) s-=p;
return s;
}
int sub(int a, int b) {
int s = (a+p-b);
if (s>=p) s-=p;
return s;
}
int po(int a, int deg)
{
if (deg==0) return 1;
if (deg%2==1) return mul(a, po(a, deg-1));
int t = po(a, deg/2);
return mul(t, t);
}
int inv(int n)
{
return po(n, p-2);
}
vector<int> Z(vector<int> s)
{
int n = s.size();
vector<int> z(n);
int L = 0, R = 0;
for (int i = 1; i < n; i++) {
if (i > R) {
L = R = i;
while (R < n && s[R-L] == s[R]) R++;
z[i] = R-L; R--;
} else {
int k = i-L;
if (z[k] < R-i+1) z[i] = z[k];
else {
L = i;
while (R < n && s[R-L] == s[R]) R++;
z[i] = R-L; R--;
}
}
}
return z;
}
mt19937 rnd(time(0));
//******CONVEX HULL TRICK******//
/*
struct Line {
mutable ll k, m, p;
bool operator<(const Line& o) const { return k < o.k; }
bool operator<(ll x) const { return p < x; }
};
struct CHT : multiset<Line, less<>> {
// (for doubles, use inf = 1/.0, div(a,b) = a/b)
const ll inf = LLONG_MAX;
ll div(ll a, ll b) { // floored division
return a /b - ((a ^ b) < 0 && a % b); }
bool isect(iterator x, iterator y) {
if (y == end()) { x->p = inf; return false; }
if (x->k == y->k) x->p = x->m > y->m ? inf : -inf;
else x->p = div(y->m - x->m, x->k - y->k);
return x->p >= y->p;
}
void add(ll k, ll m) {
auto z = insert({k, m, 0}), y = z++, x = y;
while (isect(y, z)) z = erase(z);
if (x != begin() && isect(--x, y)) isect(x, y = erase(y));
while ((y = x) != begin() && (--x)->p >= y->p)
isect(x, erase(y));
}
ll query(ll x) {
assert(!empty());
auto l = *lower_bound(x);
return l.k * x + l.m;
}
};
*/
//******MAXFLOW******//
/*
typedef vector<int> VI;
typedef vector<VI> VVI;
const int INF = 1000000000;
struct MaxFlow {
int N;
VVI cap, flow;
VI dad, Q;
MaxFlow(int N) :
N(N), cap(N, VI(N)), flow(N, VI(N)), dad(N), Q(N) {}
void AddEdge(int from, int to, int cap) {
this->cap[from][to] += cap;
}
int BlockingFlow(int s, int t) {
fill(dad.begin(), dad.end(), -1);
dad[s] = -2;
int head = 0, tail = 0;
Q[tail++] = s;
while (head < tail) {
int x = Q[head++];
for (int i = 0; i < N; i++) {
if (dad[i] == -1 && cap[x][i] - flow[x][i] > 0) {
dad[i] = x;
Q[tail++] = i;
}
}
}
if (dad[t] == -1) return 0;
int totflow = 0;
for (int i = 0; i < N; i++) {
if (dad[i] == -1) continue;
int amt = cap[i][t] - flow[i][t];
for (int j = i; amt && j != s; j = dad[j])
amt = min(amt, cap[dad[j]][j] - flow[dad[j]][j]);
if (amt == 0) continue;
flow[i][t] += amt;
flow[t][i] -= amt;
for (int j = i; j != s; j = dad[j]) {
flow[dad[j]][j] += amt;
flow[j][dad[j]] -= amt;
}
totflow += amt;
}
return totflow;
}
int GetMaxFlow(int source, int sink) {
int totflow = 0;
while (int flow = BlockingFlow(source, sink))
totflow += flow;
return totflow;
}
};*/
//******DSU******//
/*
struct DSU
{
vector<int> sz;
vector<int> parent;
void make_set(int v) {
parent[v] = v;
sz[v] = 1;
}
int find_set(int v) {
if (v == parent[v])
return v;
return parent[v] = find_set(parent[v]);
}
void union_sets(int a, int b) {
a = find_set(a);
b = find_set(b);
if (a != b) {
if (sz[a] < sz[b])
swap(a, b);
parent[b] = a;
sz[a] += sz[b];
}
}
DSU (int n)
{
sz.resize(n);
for (int i = 0; i<n; i++) make_set(i);
}
};*/
//******MODULAR FFT******//
/*
const int root = 646;
const int root_1 = 208611436;
const int root_pw = 1<<20;
void fft (vector<int> & a, bool invert) {
int n = (int) a.size();
for (int i=1, j=0; i<n; ++i) {
int bit = n >> 1;
for (; j>=bit; bit>>=1)
j -= bit;
j += bit;
if (i < j)
swap (a[i], a[j]);
}
for (int len=2; len<=n; len<<=1) {
int wlen = invert ? root_1 : root;
for (int i=len; i<root_pw; i<<=1)
wlen = int (wlen * 1ll * wlen % p);
for (int i=0; i<n; i+=len) {
int w = 1;
for (int j=0; j<len/2; ++j) {
int u = a[i+j], v = int (a[i+j+len/2] * 1ll * w % p);
a[i+j] = u+v < p ? u+v : u+v-p;
a[i+j+len/2] = u-v >= 0 ? u-v : u-v+p;
w = int (w * 1ll * wlen % p);
}
}
}
if (invert) {
int nrev = po(n, p - 2);
for (int i=0; i<n; ++i)
a[i] = int (a[i] * 1ll * nrev % p);
}
}
void poly_mult(vector < int >& a, vector < int > b) {
int s = a.size() + b.size();
int r = 1;
while (r < s) r *= 2;
a.resize(r);
b.resize(r);
fft(a, false);
fft(b, false);
for (int j = 0; j < r; j++) {
a[j] = mul(a[j], b[j]);
}
fft(a, true);
while (!a.empty() && (a.back() == 0)) a.pop_back();
}
*/
int main() {
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
int n;
cin>>n;
vector<pair<int, int>> a(n);
for (int i = 0; i<n; i++) cin>>a[i].first>>a[i].second;
ld total = 0;
for (int i = 0; i<n; i++)
for (int j = i+1; j<n; j++)
{
total+= sqrt( (long double)(a[j].first-a[i].first)*(a[j].first-a[i].first) + (long double)(a[j].second-a[i].second)*(a[j].second-a[i].second));
}
cout<<setprecision(20)<<total*2/n;
}