結果

問題 No.160 最短経路のうち辞書順最小
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-22 15:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 1,262 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-20 12:37:23
合計ジャッジ時間 3,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 90 ms
77,220 KB
testcase_05 AC 96 ms
76,800 KB
testcase_06 AC 98 ms
76,800 KB
testcase_07 AC 76 ms
74,368 KB
testcase_08 AC 80 ms
74,364 KB
testcase_09 AC 75 ms
73,584 KB
testcase_10 AC 75 ms
74,496 KB
testcase_11 AC 76 ms
74,752 KB
testcase_12 AC 76 ms
74,752 KB
testcase_13 AC 74 ms
72,832 KB
testcase_14 AC 74 ms
72,832 KB
testcase_15 AC 72 ms
72,576 KB
testcase_16 AC 78 ms
75,452 KB
testcase_17 AC 75 ms
73,600 KB
testcase_18 AC 78 ms
74,112 KB
testcase_19 AC 79 ms
74,112 KB
testcase_20 AC 85 ms
77,056 KB
testcase_21 AC 77 ms
73,088 KB
testcase_22 AC 73 ms
72,704 KB
testcase_23 AC 82 ms
76,736 KB
testcase_24 AC 83 ms
76,544 KB
testcase_25 AC 76 ms
73,716 KB
testcase_26 AC 74 ms
73,344 KB
testcase_27 AC 48 ms
61,056 KB
testcase_28 AC 99 ms
78,208 KB
testcase_29 AC 43 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))
# import sys
# input = sys.stdin.readline

input_count = 0
N, M, START, GOAL = mi()

G = {i:[] for i in range(N)}
for i in range(M):
    A,B,C = mi()
    
    # Gの第三項に引き継ぎたいものを載せる
    # 何個目~ならi
    # 経路復元なら (A,B)など 行先だけ保存しておけばいいかも
    G[A].append((B, C))
    G[B].append((A, C))


# V: 頂点数
# g[v] = {(w, cost)}:
#     頂点vから遷移可能な頂点(w)とそのコスト(cost)
# r: 始点の頂点
 
from heapq import heappush, heappop
INF = 1<<55



dist = [INF] * N
def dijkstra(N, G, s):
    
    que = [(0, s)]
    dist[s] = 0
    
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
                
    return dist

d1 = dijkstra(N, G, GOAL)

ret = []
now = START
while now!=GOAL:
    
    mins = INF
    ret.append(now)
    for v,c in G[now]:
        if dist[v] + c == dist[now]:
             mins = min(mins, v)
    now = mins
ret.append(GOAL)

print(*ret)
0