-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoocast2.java
227 lines (167 loc) · 4.24 KB
/
moocast2.java
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
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
public class moocast2 {
static int[] parent;
public static int find (int u) {
if (parent[u] != u)
parent[u] = find (parent[u]);
return parent[u];
}
public static boolean union (int a, int b) {
int r1 = find (a), r2 = find (b);
if (r1 == r2)
return false;
parent[r1] = r2;
find (a);
find (b);
return true;
}
public static void main (String[] t) throws IOException {
INPUT in = new INPUT ("moocast.in");
PrintWriter out = new PrintWriter ("moocast.out");
int N = in.iscan ();
int[] x = new int[N];
int[] y = new int[N];
for (int n = 0; n < N; ++n) {
x[n] = in.iscan ();
y[n] = in.iscan ();
}
Edge[] edges = new Edge[N * (N - 1) / 2];
int i = 0;
for (int n = 0; n < N; ++n)
for (int n2 = n + 1; n2 < N; ++n2)
edges[i++] = new Edge (n, n2, (x[n] - x[n2]) * (x[n] - x[n2]) + (y[n] - y[n2]) * (y[n] - y[n2]));
//System.out.println (i);
Arrays.sort (edges);
parent = new int[N];
for (int n = 0; n < N; ++n)
parent[n] = n;
//for (Edge e : edges)
//System.out.println (e.s + " " + e.e + " " + e.w);
int max = 0;
for (Edge e : edges)
if (union (e.s, e.e))
max = e.w;
out.println (max);
out.close ();
}
private static class Edge implements Comparable<Edge> {
int s, e, w;
public Edge (int s, int e, int w) {
this.s = s;
this.e = e;
this.w = w;
}
public int compareTo (Edge e) {
return this.w - e.w;
}
}
private static class INPUT {
private InputStream stream;
private byte[] buf = new byte[1024];
private int curChar, numChars;
public INPUT (InputStream stream) {
this.stream = stream;
}
public INPUT (String file) throws IOException {
this.stream = new FileInputStream (file);
}
public static int fast_pow (int b, int x) {
if (x == 0) return 1;
if (x == 1) return b;
if (x % 2 == 0) return fast_pow (b * b, x / 2);
return b * fast_pow (b * b, x / 2);
}
public int cscan () throws IOException {
//if (numChars == -1) throw new InputMismatchException ();
if (curChar >= numChars) {
curChar = 0;
numChars = stream.read (buf);
//if (numChars <= 0) return -1;
}
return buf[curChar++];
}
public int iscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
int res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException ();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
public String sscan () throws IOException {
int c = cscan ();
while (space (c)) c = cscan ();
StringBuilder res = new StringBuilder ();
do {
res.appendCodePoint (c);
c = cscan ();
}
while (!space (c));
return res.toString ();
}
public double dscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
double res = 0;
while (!space (c) && c != '.') {
if (c == 'e' || c == 'E') return res * fast_pow (10, iscan ()); /*Math.pow (10, iscan ());*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
//res = (res << 1) + (res << 3);
res *= 10;
res += c - '0';
c = cscan ();
}
if (c == '.') {
c = cscan ();
double m = 1;
while (!space (c)) {
if (c == 'e' || c == 'E') return res * fast_pow (10, iscan ()); /*Math.pow (10, iscan ());*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
m /= 10;
res += (c - '0') * m;
c = cscan ();
}
}
return res * sgn;
}
public long lscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
long res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
public boolean space (int c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
}
}