結果
問題 | No.94 圏外です。(EASY) |
ユーザー | takeya_okino |
提出日時 | 2019-07-21 14:57:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 234 ms / 5,000 ms |
コード長 | 1,501 bytes |
コンパイル時間 | 2,938 ms |
コンパイル使用メモリ | 76,944 KB |
実行使用メモリ | 44,392 KB |
最終ジャッジ日時 | 2024-06-13 00:33:00 |
合計ジャッジ時間 | 6,832 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,552 KB |
testcase_01 | AC | 116 ms
41,236 KB |
testcase_02 | AC | 106 ms
41,036 KB |
testcase_03 | AC | 116 ms
41,480 KB |
testcase_04 | AC | 137 ms
41,868 KB |
testcase_05 | AC | 162 ms
42,088 KB |
testcase_06 | AC | 185 ms
42,304 KB |
testcase_07 | AC | 201 ms
42,684 KB |
testcase_08 | AC | 196 ms
43,420 KB |
testcase_09 | AC | 217 ms
43,788 KB |
testcase_10 | AC | 229 ms
44,392 KB |
testcase_11 | AC | 222 ms
43,944 KB |
testcase_12 | AC | 234 ms
43,756 KB |
testcase_13 | AC | 223 ms
43,844 KB |
testcase_14 | AC | 220 ms
43,756 KB |
testcase_15 | AC | 227 ms
43,804 KB |
testcase_16 | AC | 226 ms
43,680 KB |
testcase_17 | AC | 223 ms
43,772 KB |
testcase_18 | AC | 219 ms
43,752 KB |
testcase_19 | AC | 230 ms
43,756 KB |
testcase_20 | AC | 126 ms
41,604 KB |
testcase_21 | AC | 117 ms
41,692 KB |
ソースコード
import java.util.*; public class Main { static int[] par; static int[] rank; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); par = new int[n]; rank = new int[n]; long[] x = new long[n]; long[] y = new long[n]; init(n); for(int i = 0; i < n; i++) { x[i] = sc.nextLong(); y[i] = sc.nextLong(); } for(int i = 0; i < n - 1; i++) { for(int j = i + 1; j < n; j++) { if(((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j])) <= 100) unite(i, j); } } double ans = 0; for(int i = 0; i < n - 1; i++) { for(int j = i + 1; j < n; j++) { if(same(i, j)) ans = Math.max(ans, Math.sqrt(((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j])))); } } ans += 2; if(n == 0) ans = 1; System.out.println(ans); } static void init(int m) { for(int i = 0; i < m; i++) { par[i] = i; rank[i] = 0; } } static int find(int x) { if(par[x] == x) { return x; } else { return par[x] = find(par[x]); } } static void unite(int x, int y) { x = find(x); y = find(y); if(x != y) { if(rank[x] < rank[y]) { par[x] = y; } else { par[y] = x; if(rank[x] == rank[y]) { rank[x]++; } } } } static boolean same(int x, int y) { return find(x) == find(y); } }