結果

問題 No.2179 Planet Traveler
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-06 23:54:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,924 KB
最終ジャッジ日時 2024-05-07 23:54:40
合計ジャッジ時間 7,455 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 38 ms
53,120 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 40 ms
52,992 KB
testcase_08 AC 48 ms
61,056 KB
testcase_09 AC 49 ms
62,080 KB
testcase_10 AC 52 ms
62,464 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 211 ms
84,096 KB
testcase_14 AC 176 ms
84,244 KB
testcase_15 AC 166 ms
83,456 KB
testcase_16 AC 188 ms
84,224 KB
testcase_17 AC 627 ms
95,320 KB
testcase_18 AC 311 ms
87,808 KB
testcase_19 AC 618 ms
95,924 KB
testcase_20 AC 131 ms
78,208 KB
testcase_21 AC 288 ms
86,016 KB
testcase_22 AC 224 ms
83,712 KB
testcase_23 AC 288 ms
85,760 KB
testcase_24 AC 411 ms
89,216 KB
testcase_25 AC 234 ms
84,096 KB
testcase_26 AC 507 ms
92,504 KB
testcase_27 AC 135 ms
78,512 KB
testcase_28 AC 240 ms
84,096 KB
testcase_29 AC 557 ms
93,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

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

eps = 10**(-6)
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+eps >= d:
                d = dint
            else:
                d = dint+1

            if x**2+y**2 == nx**2+ny**2:
                d = 0
        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