結果
問題 | No.2179 Planet Traveler |
ユーザー | ntuda |
提出日時 | 2023-01-26 21:40:58 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 847 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 440,236 KB |
最終ジャッジ日時 | 2024-06-27 12:46:42 |
合計ジャッジ時間 | 9,542 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,660 KB |
testcase_01 | AC | 41 ms
53,360 KB |
testcase_02 | AC | 40 ms
53,500 KB |
testcase_03 | AC | 40 ms
53,112 KB |
testcase_04 | AC | 40 ms
53,460 KB |
testcase_05 | AC | 39 ms
53,484 KB |
testcase_06 | AC | 39 ms
53,344 KB |
testcase_07 | AC | 59 ms
66,964 KB |
testcase_08 | AC | 144 ms
77,136 KB |
testcase_09 | AC | 977 ms
106,612 KB |
testcase_10 | TLE | - |
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 | -- | - |
ソースコード
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) 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]))