結果

問題 No.2179 Planet Traveler
ユーザー ntudantuda
提出日時 2023-01-26 22:14:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,294 ms / 3,000 ms
コード長 945 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 126,588 KB
最終ジャッジ日時 2024-06-27 13:07:49
合計ジャッジ時間 18,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,992 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 38 ms
53,248 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 48 ms
60,640 KB
testcase_09 AC 52 ms
62,848 KB
testcase_10 AC 55 ms
64,512 KB
testcase_11 AC 653 ms
102,748 KB
testcase_12 AC 315 ms
116,480 KB
testcase_13 AC 528 ms
117,236 KB
testcase_14 AC 389 ms
101,184 KB
testcase_15 AC 347 ms
100,964 KB
testcase_16 AC 405 ms
100,992 KB
testcase_17 AC 2,052 ms
126,588 KB
testcase_18 AC 1,101 ms
120,576 KB
testcase_19 AC 2,294 ms
126,268 KB
testcase_20 AC 153 ms
82,536 KB
testcase_21 AC 915 ms
116,288 KB
testcase_22 AC 552 ms
103,232 KB
testcase_23 AC 828 ms
101,760 KB
testcase_24 AC 1,497 ms
115,484 KB
testcase_25 AC 565 ms
104,192 KB
testcase_26 AC 1,824 ms
119,460 KB
testcase_27 AC 172 ms
82,952 KB
testcase_28 AC 550 ms
96,000 KB
testcase_29 AC 1,830 ms
117,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
from heapq import *
#import time
#st = time.time()

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 > D[u]: continue
        tmp = max(D[u], b)
        if D[a] > tmp:
            D[a] = tmp
            heappush(q, (D[a], a))
#print(D)
print(ceil(round(D[N - 1],8)))
#print(time.time() - st)
0