結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,888 KB
testcase_01 AC 40 ms
54,440 KB
testcase_02 AC 39 ms
52,720 KB
testcase_03 AC 37 ms
53,968 KB
testcase_04 AC 36 ms
53,680 KB
testcase_05 AC 37 ms
53,500 KB
testcase_06 AC 39 ms
53,080 KB
testcase_07 AC 39 ms
53,356 KB
testcase_08 AC 46 ms
60,868 KB
testcase_09 AC 50 ms
62,620 KB
testcase_10 AC 52 ms
62,080 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 189 ms
84,224 KB
testcase_14 AC 154 ms
84,244 KB
testcase_15 AC 152 ms
84,096 KB
testcase_16 AC 172 ms
84,480 KB
testcase_17 AC 557 ms
95,468 KB
testcase_18 AC 367 ms
88,576 KB
testcase_19 AC 568 ms
94,880 KB
testcase_20 AC 119 ms
78,208 KB
testcase_21 AC 260 ms
86,616 KB
testcase_22 AC 202 ms
83,728 KB
testcase_23 AC 255 ms
85,504 KB
testcase_24 AC 356 ms
89,840 KB
testcase_25 AC 209 ms
84,352 KB
testcase_26 AC 493 ms
92,696 KB
testcase_27 AC 120 ms
78,336 KB
testcase_28 AC 219 ms
83,584 KB
testcase_29 AC 492 ms
93,392 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

        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