結果

問題 No.2179 Planet Traveler
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-07 00:10:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-05-08 00:06:35
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,864 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 45 ms
52,608 KB
testcase_03 AC 44 ms
52,736 KB
testcase_04 AC 44 ms
52,736 KB
testcase_05 AC 44 ms
52,480 KB
testcase_06 AC 44 ms
52,352 KB
testcase_07 AC 44 ms
52,864 KB
testcase_08 AC 57 ms
61,312 KB
testcase_09 AC 59 ms
61,824 KB
testcase_10 AC 60 ms
62,720 KB
testcase_11 AC 224 ms
84,736 KB
testcase_12 AC 226 ms
82,304 KB
testcase_13 AC 270 ms
83,584 KB
testcase_14 AC 216 ms
83,968 KB
testcase_15 AC 208 ms
83,584 KB
testcase_16 AC 228 ms
83,840 KB
testcase_17 AC 825 ms
95,872 KB
testcase_18 AC 389 ms
87,808 KB
testcase_19 AC 750 ms
95,624 KB
testcase_20 AC 154 ms
78,848 KB
testcase_21 AC 352 ms
86,528 KB
testcase_22 AC 278 ms
83,712 KB
testcase_23 AC 378 ms
85,376 KB
testcase_24 AC 544 ms
89,368 KB
testcase_25 AC 297 ms
84,480 KB
testcase_26 AC 626 ms
92,300 KB
testcase_27 AC 160 ms
78,592 KB
testcase_28 AC 300 ms
83,328 KB
testcase_29 AC 738 ms
93,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
def isqrt(n):
    rn = int(n**0.5)
    l = max(0, rn - 1)
    r = int(rn + 2)
    while r > l+1:
        m = (r+l)//2
        if m*m <= n:
            l = m
        else:
            r = m
    return l

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

inf = 10**20

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)
            r2 = (nx**2+ny**2)

            d = r1+r2 - isqrt(4*r1*r2)
        dist[i][j] = dist[j][i] = d

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