結果
問題 | No.2179 Planet Traveler |
ユーザー | ntuda |
提出日時 | 2023-01-26 21:42:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 229,592 KB |
最終ジャッジ日時 | 2024-06-27 12:48:13 |
合計ジャッジ時間 | 7,704 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,820 KB |
testcase_01 | AC | 39 ms
54,220 KB |
testcase_02 | AC | 38 ms
52,928 KB |
testcase_03 | AC | 38 ms
53,808 KB |
testcase_04 | AC | 38 ms
53,332 KB |
testcase_05 | AC | 38 ms
53,844 KB |
testcase_06 | AC | 40 ms
53,904 KB |
testcase_07 | AC | 41 ms
53,572 KB |
testcase_08 | AC | 58 ms
66,672 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 506 ms
114,540 KB |
testcase_12 | AC | 234 ms
116,480 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | TLE | - |
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 | -- | - |
ソースコード
from math import ceil from heapq import * N = int(input()) RXYT = [] for i in range(N): x, y, t = map(int, input().split()) r = (x ** 2 + y ** 2) ** 0.5 RXYT.append((r, x, y, t)) E = [[] for _ in range(N)] for i in range(N - 1): r1, x1, y1, t1 = RXYT[i] for j in range(i + 1, N): r2, x2, y2, t2 = RXYT[j] if t1 == t2: tmp = (x1 - x2) ** 2 + (y1 - y2) ** 2 E[i].append((j, tmp)) E[j].append((i, tmp)) else: tmp = (r1 - r2) ** 2 E[i].append((j, tmp)) E[j].append((i, tmp)) D = [float('inf')] * N D[0] = 0 q = [(0, 0)] while len(q) > 0: d, u = heappop(q) if d > D[u]: continue for i in E[u]: a, b = i if D[a] > D[u]: D[a] = max(D[u], b) heappush(q, (D[a], a)) # print(D) print(ceil(D[N - 1]))