結果
問題 | No.2179 Planet Traveler |
ユーザー | rlangevin |
提出日時 | 2023-03-19 00:15:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,591 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 78,580 KB |
最終ジャッジ日時 | 2024-09-18 13:38:22 |
合計ジャッジ時間 | 14,007 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
54,068 KB |
testcase_01 | AC | 37 ms
53,912 KB |
testcase_02 | AC | 38 ms
54,380 KB |
testcase_03 | AC | 39 ms
54,020 KB |
testcase_04 | AC | 37 ms
54,680 KB |
testcase_05 | AC | 36 ms
54,740 KB |
testcase_06 | AC | 36 ms
54,204 KB |
testcase_07 | AC | 53 ms
66,932 KB |
testcase_08 | AC | 84 ms
77,008 KB |
testcase_09 | AC | 91 ms
76,488 KB |
testcase_10 | AC | 80 ms
76,612 KB |
testcase_11 | AC | 398 ms
77,576 KB |
testcase_12 | AC | 1,083 ms
77,692 KB |
testcase_13 | WA | - |
testcase_14 | AC | 364 ms
77,836 KB |
testcase_15 | AC | 368 ms
78,220 KB |
testcase_16 | AC | 351 ms
77,832 KB |
testcase_17 | AC | 931 ms
77,580 KB |
testcase_18 | AC | 946 ms
77,700 KB |
testcase_19 | AC | 945 ms
77,840 KB |
testcase_20 | AC | 217 ms
77,472 KB |
testcase_21 | AC | 862 ms
77,760 KB |
testcase_22 | AC | 597 ms
77,596 KB |
testcase_23 | AC | 540 ms
76,864 KB |
testcase_24 | AC | 781 ms
77,496 KB |
testcase_25 | AC | 634 ms
77,600 KB |
testcase_26 | AC | 856 ms
77,204 KB |
testcase_27 | AC | 225 ms
77,732 KB |
testcase_28 | AC | 458 ms
77,736 KB |
testcase_29 | AC | 851 ms
78,420 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**-10 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)