結果

問題 No.2179 Planet Traveler
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-03 15:13:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 3,000 ms
コード長 1,085 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 148,568 KB
最終ジャッジ日時 2024-12-03 15:13:38
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 56 ms
62,848 KB
testcase_09 AC 60 ms
64,512 KB
testcase_10 AC 47 ms
60,032 KB
testcase_11 AC 123 ms
97,280 KB
testcase_12 AC 172 ms
106,880 KB
testcase_13 AC 168 ms
107,520 KB
testcase_14 AC 407 ms
148,568 KB
testcase_15 AC 355 ms
140,464 KB
testcase_16 AC 326 ms
133,952 KB
testcase_17 AC 405 ms
139,032 KB
testcase_18 AC 428 ms
137,472 KB
testcase_19 AC 289 ms
119,456 KB
testcase_20 AC 158 ms
82,688 KB
testcase_21 AC 526 ms
142,804 KB
testcase_22 AC 360 ms
115,184 KB
testcase_23 AC 203 ms
93,824 KB
testcase_24 AC 340 ms
122,844 KB
testcase_25 AC 249 ms
103,484 KB
testcase_26 AC 238 ms
109,276 KB
testcase_27 AC 128 ms
81,664 KB
testcase_28 AC 178 ms
92,416 KB
testcase_29 AC 368 ms
127,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import heapq as hq
input = sys.stdin.readline
INF = 4611686018427387903
    
def isqrt(n):
    rn = math.sqrt(n)
    ok = max(0, int(rn - 2))
    ng = int(rn + 2)
    while(abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if(mid ** 2 <= n):
            ok = mid
        else:
            ng = mid
    return ok

'''
Main Code
'''

n = int(input())
planets = [list(map(int, input().split())) for _ in [0] * n]

graph = [[] for _ in [0] * n]
for i in range(n - 1):
    for j in range(i + 1, n):
        x1, y1, t1 = planets[i]
        x2, y2, t2 = planets[j]
        d = (x1 - x2) ** 2 + (y1 - y2) ** 2
        if(t1 != t2):
            r1 = x1 ** 2 + y1 ** 2
            r2 = x2 ** 2 + y2 ** 2
            d = r1 + r2 - isqrt(4 * r1 * r2)
        graph[i].append((j, d))
        graph[j].append((i, d))

dp = [INF] * n
que = [(0, 0)]
while(que):
    c, v = hq.heappop(que)
    if(dp[v] <= c):
        continue
    dp[v] = c
    if(v == n - 1):
        break
    for nv, nd in graph[v]:
        hq.heappush(que, (max(c, nd), nv))
ans = dp[n - 1]
print(ans)
0