結果
問題 | No.2179 Planet Traveler |
ユーザー | rlangevin |
提出日時 | 2023-03-19 00:16:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,590 bytes |
コンパイル時間 | 323 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 78,144 KB |
最終ジャッジ日時 | 2024-09-18 13:38:38 |
合計ジャッジ時間 | 15,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,120 KB |
testcase_01 | AC | 41 ms
53,632 KB |
testcase_02 | AC | 43 ms
52,992 KB |
testcase_03 | AC | 40 ms
52,608 KB |
testcase_04 | AC | 40 ms
52,864 KB |
testcase_05 | AC | 40 ms
52,992 KB |
testcase_06 | AC | 41 ms
53,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 94 ms
76,836 KB |
testcase_09 | AC | 101 ms
76,672 KB |
testcase_10 | AC | 89 ms
76,672 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,016 ms
77,732 KB |
testcase_14 | AC | 397 ms
78,024 KB |
testcase_15 | AC | 395 ms
78,016 KB |
testcase_16 | AC | 396 ms
77,940 KB |
testcase_17 | AC | 1,042 ms
77,712 KB |
testcase_18 | AC | 1,059 ms
77,896 KB |
testcase_19 | AC | 1,065 ms
77,824 KB |
testcase_20 | AC | 247 ms
77,524 KB |
testcase_21 | AC | 962 ms
77,952 KB |
testcase_22 | AC | 673 ms
77,972 KB |
testcase_23 | AC | 597 ms
77,140 KB |
testcase_24 | AC | 863 ms
77,308 KB |
testcase_25 | AC | 708 ms
77,592 KB |
testcase_26 | AC | 951 ms
77,816 KB |
testcase_27 | AC | 249 ms
77,424 KB |
testcase_28 | AC | 503 ms
77,952 KB |
testcase_29 | AC | 939 ms
78,144 KB |
ソースコード
from math import sqrt class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] def dist1(i, j): return (X[i] - X[j]) ** 2 + (Y[i] - Y[j]) ** 2 def dist2(i, j): return abs(sqrt(X[i] ** 2 + Y[i] ** 2) - sqrt(X[j] ** 2 + Y[j] ** 2)) N = int(input()) X, Y, T = [0] * N, [0] * N, [0] * N for i in range(N): X[i], Y[i], T[i] = map(int, input().split()) yes = 10 ** 18 + 5 no = -1 eps = 10**-5 while yes - no != 1: mid = (yes + no)//2 U = UnionFind(N) for i in range(N): for j in range(i + 1, N): if T[i] != T[j]: if dist2(i, j) ** 2 - eps <= mid: U.union(i, j) else: if dist1(i, j) <= mid: U.union(i, j) if U.is_same(0, N - 1): yes = mid else: no = mid print(yes)