結果

問題 No.2179 Planet Traveler
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-07 00:10:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 96,028 KB
最終ジャッジ日時 2024-11-30 21:18:44
合計ジャッジ時間 8,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 41 ms
52,992 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 43 ms
52,736 KB
testcase_08 AC 51 ms
61,312 KB
testcase_09 AC 53 ms
62,208 KB
testcase_10 AC 56 ms
62,976 KB
testcase_11 AC 207 ms
84,352 KB
testcase_12 AC 209 ms
82,292 KB
testcase_13 AC 245 ms
83,920 KB
testcase_14 AC 191 ms
83,804 KB
testcase_15 AC 185 ms
83,532 KB
testcase_16 AC 194 ms
83,976 KB
testcase_17 AC 701 ms
96,028 KB
testcase_18 AC 348 ms
87,676 KB
testcase_19 AC 672 ms
95,364 KB
testcase_20 AC 139 ms
78,464 KB
testcase_21 AC 317 ms
86,504 KB
testcase_22 AC 248 ms
83,584 KB
testcase_23 AC 321 ms
85,760 KB
testcase_24 AC 461 ms
90,132 KB
testcase_25 AC 256 ms
84,224 KB
testcase_26 AC 555 ms
92,172 KB
testcase_27 AC 146 ms
78,480 KB
testcase_28 AC 260 ms
83,200 KB
testcase_29 AC 605 ms
92,908 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