結果

問題 No.160 最短経路のうち辞書順最小
ユーザー convexineqconvexineq
提出日時 2020-12-12 13:27:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 853 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,088 KB
最終ジャッジ日時 2024-09-19 21:55:54
合計ジャッジ時間 3,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 37 ms
53,120 KB
testcase_04 AC 78 ms
76,760 KB
testcase_05 AC 82 ms
77,088 KB
testcase_06 AC 85 ms
77,056 KB
testcase_07 AC 66 ms
71,936 KB
testcase_08 AC 68 ms
71,680 KB
testcase_09 AC 65 ms
71,808 KB
testcase_10 AC 64 ms
71,424 KB
testcase_11 AC 65 ms
71,808 KB
testcase_12 AC 67 ms
71,680 KB
testcase_13 AC 64 ms
71,040 KB
testcase_14 AC 64 ms
70,528 KB
testcase_15 AC 62 ms
70,400 KB
testcase_16 AC 69 ms
72,704 KB
testcase_17 AC 63 ms
71,168 KB
testcase_18 AC 65 ms
71,808 KB
testcase_19 AC 66 ms
72,064 KB
testcase_20 AC 70 ms
72,960 KB
testcase_21 AC 63 ms
70,528 KB
testcase_22 AC 64 ms
70,784 KB
testcase_23 AC 67 ms
72,320 KB
testcase_24 AC 67 ms
73,600 KB
testcase_25 AC 65 ms
71,168 KB
testcase_26 AC 63 ms
71,040 KB
testcase_27 AC 41 ms
54,784 KB
testcase_28 AC 80 ms
77,016 KB
testcase_29 AC 41 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
def dijkstra(g,start):
    n = len(g)
    INF = 1<<61
    dist = [INF]*(n) #startからの最短距離
    #pending = n-1 #未確定の点の個数
    dist[start] = 0
    q = [(0,start)] #(そこまでの距離、点)
    while q:# and pending:
        dv,v = heappop(q)
        if dist[v] < dv: continue
        for to, cost in g[v]:
            if dv + cost < dist[to]:
                dist[to] = dv + cost
                heappush(q, (dist[to], to))
    return dist

n,m,s,goal = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(m):
    a,b,c = map(int,input().split())
    g[a].append((b,c))
    g[b].append((a,c))
    
dist = dijkstra(g,goal)

res = [s]
v = s
while v != goal:
    i = n+1
    for u,c in g[v]:
        if dist[v] == dist[u] + c:
            i = min(i,u)
    v = i
    res.append(v)
print(*res)
0