結果

問題 No.2179 Planet Traveler
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-06 23:44:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 905 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 95,600 KB
最終ジャッジ日時 2024-05-07 23:43:59
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 35 ms
52,992 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 34 ms
52,608 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 34 ms
52,608 KB
testcase_07 AC 35 ms
53,376 KB
testcase_08 AC 42 ms
60,800 KB
testcase_09 AC 45 ms
61,824 KB
testcase_10 AC 47 ms
62,720 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 182 ms
84,508 KB
testcase_14 AC 155 ms
84,232 KB
testcase_15 AC 146 ms
84,096 KB
testcase_16 AC 164 ms
84,304 KB
testcase_17 AC 524 ms
95,600 KB
testcase_18 AC 272 ms
88,012 KB
testcase_19 AC 525 ms
95,264 KB
testcase_20 AC 116 ms
78,084 KB
testcase_21 AC 241 ms
86,516 KB
testcase_22 AC 193 ms
83,816 KB
testcase_23 AC 252 ms
85,248 KB
testcase_24 AC 347 ms
89,384 KB
testcase_25 AC 193 ms
84,096 KB
testcase_26 AC 413 ms
92,956 KB
testcase_27 AC 117 ms
78,080 KB
testcase_28 AC 200 ms
83,852 KB
testcase_29 AC 465 ms
93,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

n = int(input())
XYT = [list(map(int,input().split())) for i in range(n)]

dist = [[0]*n for i in range(n)]
for i in range(n):
    for j in range(i):
        x,y,t = XYT[i]
        nx,ny,nt = XYT[j]
        if t == nt:
            d = (x-nx)**2+(y-ny)**2
            
        else:
            r1 = (x**2+y**2)**0.5
            r2 = (nx**2+ny**2)**0.5
            d = (r1-r2)**2
            dint = int(d)
            if dint+10**-7 < d:
                d = dint+1
            else:
                d = dint

        dist[i][j] = dist[j][i] = d

inf = 10**20
dis = [inf]*n

dis[0] = 0
h = [[0,0]]

while h:
    d,now = heappop(h)
    if dis[now] != d:
        continue
    for j in range(n):
        if now == j:
            continue
        dnex = max(d,dist[now][j])
        if dis[j] > dnex:
            dis[j] = dnex
            heappush(h,[dnex,j])
print(dis[-1])

0