結果
問題 | No.2179 Planet Traveler |
ユーザー | H20 |
提出日時 | 2023-01-06 22:48:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,268 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 121,600 KB |
最終ジャッジ日時 | 2024-05-07 22:29:07 |
合計ジャッジ時間 | 7,749 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
92,416 KB |
testcase_01 | AC | 134 ms
86,784 KB |
testcase_02 | AC | 131 ms
86,724 KB |
testcase_03 | AC | 131 ms
86,608 KB |
testcase_04 | AC | 133 ms
86,656 KB |
testcase_05 | AC | 133 ms
86,392 KB |
testcase_06 | AC | 132 ms
86,784 KB |
testcase_07 | AC | 208 ms
89,592 KB |
testcase_08 | AC | 488 ms
90,712 KB |
testcase_09 | AC | 456 ms
90,492 KB |
testcase_10 | AC | 446 ms
90,912 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
# UnionFind 参考は以下のサイト # https://note.nkmk.me/python-union-find/ from collections import defaultdict from decimal import Decimal class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) def is_ok(s): uf = UnionFind(N) for i in range(N): for j in range(i+1,N): xi,yi,ti = XYT[i] xj,yj,tj = XYT[j] if ti==tj: if (xi-xj)**2+(yi-yj)**2<=s: uf.union(i,j) else: if XY[i][j]<=s: uf.union(i,j) return uf.same(0,N-1) def meguru_bisect(ng, ok): while (abs(ok - ng) > 1): mid = (ok + ng) // 2 if is_ok(mid): ok = mid else: ng = mid return ok N = int(input()) XYT = [list(map(int, input().split())) for _ in range(N)] D = [] for i in range(N): D.append(Decimal(XYT[i][0]**2+XYT[i][1]**2)**Decimal('0.5')) XY = [[0]*N for _ in range(N)] for i in range(N): for j in range(i+1,N): XY[i][j]=(D[i]-D[j])**Decimal(2) print(meguru_bisect(-1,3200000001))