結果

問題 No.160 最短経路のうち辞書順最小
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-22 04:06:09
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 2,168 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 853,640 KB
最終ジャッジ日時 2023-10-20 16:50:12
合計ジャッジ時間 7,722 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,568 KB
testcase_01 AC 36 ms
53,568 KB
testcase_02 AC 36 ms
53,568 KB
testcase_03 AC 37 ms
53,568 KB
testcase_04 AC 99 ms
77,200 KB
testcase_05 AC 99 ms
77,188 KB
testcase_06 AC 112 ms
80,640 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))


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, f"{A}_{B}"))
    G[B].append((A, C, f"{B}_{A}"))


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

# 経路復元の時はコメントアウト部分を解除
def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    # 経路復元用
    edge = {i:set([]) for i in range(N)}
    
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost, ind in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                
                # 経路復元用
                edge[t] = set([ind])
                heappush(que, (dist[t], t))
            
            # コストが同じものもどうにかしたいならここ追加
            elif dist[v] + cost == dist[t]:
                edge[t].add(ind)
                heappush(que, (dist[t], t))            
    return edge 

ret = dijkstra(N, G, START)

START = START
GOAL = GOAL

# もし文字列でハッシュ化してたらここで解除
temp = ret.keys()
for k in temp:
    c = []
    for v in ret[k]:
        c.append(tuple(map(int, list(v.split("_")))))
    ret[k] = sorted(c)

def keiro_with_dijkstr(START, GOAL):
    
    def keiro_hukugen(node, old_node):
        keiro_list = []
        for next_node in ret[node]:
            nn = (set(next_node)-set([node])).pop()
            if nn != old_node:
                flg, keiro = keiro_hukugen(nn, node)
                if flg:
                    return flg, keiro + [node]

        if node == START:
            return True, [START]

        return False, keiro_list
    
    return keiro_hukugen(GOAL, -1)



print(*keiro_with_dijkstr(START, GOAL)[1])
0