結果
問題 | No.94 圏外です。(EASY) |
ユーザー | Grenache |
提出日時 | 2016-05-18 20:17:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 276 ms / 5,000 ms |
コード長 | 1,771 bytes |
コンパイル時間 | 3,745 ms |
コンパイル使用メモリ | 77,996 KB |
実行使用メモリ | 47,224 KB |
最終ジャッジ日時 | 2024-06-26 07:56:06 |
合計ジャッジ時間 | 9,614 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
41,300 KB |
testcase_01 | AC | 138 ms
41,184 KB |
testcase_02 | AC | 136 ms
40,820 KB |
testcase_03 | AC | 135 ms
41,276 KB |
testcase_04 | AC | 163 ms
41,880 KB |
testcase_05 | AC | 198 ms
42,508 KB |
testcase_06 | AC | 216 ms
42,772 KB |
testcase_07 | AC | 226 ms
43,812 KB |
testcase_08 | AC | 250 ms
47,212 KB |
testcase_09 | AC | 267 ms
47,224 KB |
testcase_10 | AC | 271 ms
46,804 KB |
testcase_11 | AC | 265 ms
47,136 KB |
testcase_12 | AC | 268 ms
47,064 KB |
testcase_13 | AC | 265 ms
46,796 KB |
testcase_14 | AC | 268 ms
46,496 KB |
testcase_15 | AC | 270 ms
46,824 KB |
testcase_16 | AC | 255 ms
47,064 KB |
testcase_17 | AC | 262 ms
46,972 KB |
testcase_18 | AC | 267 ms
46,732 KB |
testcase_19 | AC | 276 ms
46,904 KB |
testcase_20 | AC | 146 ms
41,692 KB |
testcase_21 | AC | 135 ms
41,344 KB |
ソースコード
import java.util.*; public class Main_yukicoder94 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] x = new int[n]; int[] y = new int[n]; for (int i = 0; i < n; i++) { x[i] = sc.nextInt(); y[i] = sc.nextInt(); } UnionFind uf = new UnionFind(n); int[][] dis = new int[n][n]; for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { dis[i][j] = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]); if (dis[i][j] <= 100) { uf.union(i, j); } } } int max = 0; for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { if (uf.same(i, j)) { max = Math.max(max, dis[i][j]); } } } if (n == 0) { System.out.println(1); } else { System.out.printf("%.7f\n", Math.sqrt(max) + 2); } sc.close(); } @SuppressWarnings("unused") private static class UnionFind { int[] parent; int[] rank; UnionFind(int n) { parent = new int[n]; rank = new int[n]; for (int i = 0; i < n; i++) { parent[i] = i; rank[i] = 0; } } int find(int x) { if (parent[x] == x) { return x; } else { return parent[x] = find(parent[x]); } } boolean same(int x, int y) { return find(x) == find(y); } void union(int x, int y) { x = find(x); y = find(y); if (x != y) { if (rank[x] > rank[y]) { parent[y] = x; } else { parent[x] = y; if (rank[x] == rank[y]) { rank[y]++; } } } return; } // 異なる集合の数 int count() { int ret = 0; for (int i = 0; i < parent.length; i++) { if (find(i) == i) { ret++; } } return ret; } } }