結果
問題 | No.2179 Planet Traveler |
ユーザー | H20 |
提出日時 | 2023-01-06 23:02:49 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,012 bytes |
コンパイル時間 | 286 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 157,696 KB |
最終ジャッジ日時 | 2024-05-07 22:49:03 |
合計ジャッジ時間 | 47,132 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
81,920 KB |
testcase_01 | AC | 140 ms
81,536 KB |
testcase_02 | AC | 137 ms
81,792 KB |
testcase_03 | AC | 140 ms
81,920 KB |
testcase_04 | AC | 138 ms
81,920 KB |
testcase_05 | AC | 136 ms
81,792 KB |
testcase_06 | AC | 135 ms
81,536 KB |
testcase_07 | AC | 163 ms
82,432 KB |
testcase_08 | AC | 358 ms
84,476 KB |
testcase_09 | AC | 282 ms
82,604 KB |
testcase_10 | AC | 318 ms
84,260 KB |
testcase_11 | AC | 1,731 ms
135,324 KB |
testcase_12 | AC | 1,941 ms
136,844 KB |
testcase_13 | AC | 2,756 ms
144,728 KB |
testcase_14 | AC | 2,011 ms
141,020 KB |
testcase_15 | AC | 1,923 ms
140,964 KB |
testcase_16 | AC | 1,892 ms
141,568 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1,015 ms
96,860 KB |
testcase_21 | AC | 2,836 ms
150,712 KB |
testcase_22 | AC | 2,125 ms
127,772 KB |
testcase_23 | AC | 2,035 ms
124,752 KB |
testcase_24 | AC | 2,690 ms
141,884 KB |
testcase_25 | AC | 2,237 ms
129,028 KB |
testcase_26 | AC | 2,838 ms
145,664 KB |
testcase_27 | AC | 1,192 ms
99,180 KB |
testcase_28 | AC | 1,876 ms
118,324 KB |
testcase_29 | AC | 2,734 ms
142,776 KB |
ソースコード
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 __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) def is_ok(s): uf = UnionFind(N) hs = Decimal(s)**Decimal('0.5') for i,xyti in enumerate(XYT): for j,xytj in enumerate(XYT[i+1:],start=i+1): if not uf.same(i,j): if xyti[2]==xytj[2]: xi,yi,ti = xyti xj,yj,tj = xytj if (xi-xj)**2+(yi-yj)**2<=s: uf.union(i,j) else: if IJD[i*N+j]<=hs: uf.union(i,j) return uf.same(0,N-1) 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')) IJD = [0]*(N**2) for i in range(N): for j in range(i+1,N): IJD[i*N+j]=abs(D[i]-D[j]) ng = -1 ok = 3200000001 while (abs(ok - ng) > 1): mid = (ok + ng) // 2 if is_ok(mid): ok = mid else: ng = mid print(ok)