結果

問題 No.2179 Planet Traveler
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-26 19:16:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 3,000 ms
コード長 1,598 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 118,552 KB
最終ジャッジ日時 2024-05-07 20:29:24
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 37 ms
52,992 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 36 ms
53,336 KB
testcase_08 AC 46 ms
61,824 KB
testcase_09 AC 48 ms
62,336 KB
testcase_10 AC 55 ms
63,360 KB
testcase_11 AC 189 ms
102,144 KB
testcase_12 AC 265 ms
112,640 KB
testcase_13 AC 283 ms
113,152 KB
testcase_14 AC 168 ms
100,480 KB
testcase_15 AC 172 ms
100,400 KB
testcase_16 AC 177 ms
100,864 KB
testcase_17 AC 390 ms
118,512 KB
testcase_18 AC 305 ms
114,432 KB
testcase_19 AC 376 ms
118,552 KB
testcase_20 AC 131 ms
80,640 KB
testcase_21 AC 291 ms
110,424 KB
testcase_22 AC 225 ms
97,024 KB
testcase_23 AC 233 ms
95,232 KB
testcase_24 AC 309 ms
107,736 KB
testcase_25 AC 228 ms
97,980 KB
testcase_26 AC 341 ms
111,548 KB
testcase_27 AC 127 ms
80,640 KB
testcase_28 AC 205 ms
89,984 KB
testcase_29 AC 336 ms
109,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #




########################################
from heapq import heappush, heappop
def dijkstra( G, s, INF=10 ** 18):
    """
    https://tjkendev.github.io/procon-library/python/graph/dijkstra.html
    O((|E|+|V|)log|V|)
    V: 頂点数
    G[v] = [(nod, cost)]:
        頂点vから遷移可能な頂点(nod)とそのコスト(cost)
    s: 始点の頂点"""

    N=len(G)
    N+=1
    dist = [INF] * N
    hp = [(0, s)]  # (c, v)
    dist[s] = 0
    while hp:
        c, v = heappop(hp)  #vまで行くコストがc
        if dist[v] < c:
            continue
        for u, cost in G[v]:
            if max(dist[v] , cost) < dist[u]:
                dist[u] = max(dist[v] , cost)
                heappush(hp, (dist[u], u))
    return dist
##################################################



n=int(input())
x=[0]
y=[0]
t=[0]
for i in range(n):
    a,b,c=map(int,input().split())
    x.append(a)
    y.append(b)
    t.append(c)
def cost(i,j):
    if t[i]==t[j]:
        return (x[i]-x[j])**2+(y[i]-y[j])**2
    else:
        ri2 = x[i] ** 2 + y[i] ** 2
        rj2 = x[j] ** 2 + y[j] ** 2
        def f(s):
            if s<0:return 0
            if ri2+rj2-s<0:return 1
            return (ri2+rj2-s)**2<=4*ri2*rj2
        ng=int(abs(ri2**0.5-rj2**0.5)**2)-2
        ok=ng+4
        while ok-ng>1:
            mid=(ok+ng)//2
            if f(mid):ok=mid
            else:ng=mid
        return ok


root=[[] for i in range(n+5)]
for i in range(1,n+1):
    for j in range(i+1,n+1):
        c=cost(i,j)
        root[i].append((j,c))
        root[j].append((i,c))

print(dijkstra(root,1)[n])




0