結果

問題 No.160 最短経路のうち辞書順最小
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-12-30 18:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-27 16:44:29
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,736 KB
testcase_01 AC 46 ms
62,728 KB
testcase_02 AC 46 ms
62,808 KB
testcase_03 AC 46 ms
63,324 KB
testcase_04 AC 75 ms
78,544 KB
testcase_05 AC 80 ms
79,196 KB
testcase_06 AC 81 ms
79,428 KB
testcase_07 AC 67 ms
73,252 KB
testcase_08 AC 65 ms
73,024 KB
testcase_09 AC 65 ms
72,896 KB
testcase_10 AC 63 ms
72,680 KB
testcase_11 AC 62 ms
72,464 KB
testcase_12 AC 65 ms
73,964 KB
testcase_13 AC 63 ms
71,988 KB
testcase_14 AC 66 ms
71,732 KB
testcase_15 AC 68 ms
71,640 KB
testcase_16 AC 70 ms
73,724 KB
testcase_17 AC 63 ms
71,076 KB
testcase_18 AC 62 ms
72,536 KB
testcase_19 AC 66 ms
73,512 KB
testcase_20 AC 70 ms
74,492 KB
testcase_21 AC 63 ms
71,672 KB
testcase_22 AC 60 ms
70,472 KB
testcase_23 AC 64 ms
72,580 KB
testcase_24 AC 67 ms
74,888 KB
testcase_25 AC 65 ms
72,512 KB
testcase_26 AC 66 ms
72,952 KB
testcase_27 AC 55 ms
66,428 KB
testcase_28 AC 82 ms
79,488 KB
testcase_29 AC 57 ms
68,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math,time,random
input = sys.stdin.readline

INF = (1<<60)
N,M,S,G = map(int,input().split())
e = [[] for _ in range(N)]
dist = defaultdict(lambda:defaultdict(lambda:INF))
for _ in range(M):
    u,v,c = map(int,input().split())
    e[u].append((v,c))
    e[v].append((u,c))
    dist[u][v] = c
    dist[v][u] = c
def dijkstra(s,e):
    
    N = len(e)
    dist = [INF]*N
    dist[s]=0
    h = []

    heappush(h,(0,s))
    while h:
        nw,v = heappop(h)
        if dist[v]!=nw:
            continue
        for iv,ic in e[v]:
            nc = ic + nw
            if nc < dist[iv]:
                dist[iv] = nc
                heappush(h,(nc,iv))
    return dist


D = dijkstra(G,e)

X = [S]
while X[-1]!=G:
    x = X[-1]
    for i in range(N):
        if D[i]+dist[i][x] == D[x]:
            X.append(i)
            break
print(*X)
0