結果

問題 No.1301 Strange Graph Shortest Path
ユーザー neterukunneterukun
提出日時 2020-11-27 22:30:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,553 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 127,928 KB
最終ジャッジ日時 2024-07-26 19:52:37
合計ジャッジ時間 21,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,484 KB
testcase_01 AC 39 ms
54,248 KB
testcase_02 WA -
testcase_03 AC 510 ms
106,928 KB
testcase_04 AC 662 ms
121,756 KB
testcase_05 AC 454 ms
107,780 KB
testcase_06 AC 599 ms
117,204 KB
testcase_07 AC 601 ms
113,116 KB
testcase_08 AC 449 ms
106,284 KB
testcase_09 AC 587 ms
115,408 KB
testcase_10 WA -
testcase_11 AC 626 ms
116,700 KB
testcase_12 AC 624 ms
118,204 KB
testcase_13 AC 599 ms
113,204 KB
testcase_14 AC 577 ms
113,776 KB
testcase_15 AC 551 ms
111,772 KB
testcase_16 AC 692 ms
122,724 KB
testcase_17 AC 639 ms
115,140 KB
testcase_18 AC 553 ms
110,144 KB
testcase_19 AC 613 ms
117,492 KB
testcase_20 AC 632 ms
119,552 KB
testcase_21 AC 612 ms
114,112 KB
testcase_22 AC 591 ms
120,132 KB
testcase_23 AC 575 ms
113,532 KB
testcase_24 AC 613 ms
118,564 KB
testcase_25 AC 657 ms
120,868 KB
testcase_26 AC 614 ms
114,464 KB
testcase_27 AC 616 ms
116,500 KB
testcase_28 AC 493 ms
107,356 KB
testcase_29 WA -
testcase_30 AC 666 ms
118,752 KB
testcase_31 AC 668 ms
120,500 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 521 ms
121,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline


def dijkstra(start: int, graph: list) -> list:
    """dijkstra法: 始点startから各頂点への最短距離を求める
    計算量: O((E+V)logV)
    """
    INF = 10 ** 18
    n = len(graph)
    dist = [INF] * n
    dist[start] = 0
    q = [(0, start)] # q = [(startからの距離, 現在地)]
    while q:
        d, v = heapq.heappop(q)
        if dist[v] < d:
            continue
        for nxt_v, cost in graph[v]:
            if dist[v] + cost < dist[nxt_v]:
                dist[nxt_v] = dist[v] + cost
                heapq.heappush(q, (dist[nxt_v], nxt_v))
    return dist


n, m = map(int, input().split())
edges = [list(map(int, input().split())) for _ in range(m)]
ans = 0


graph = [[] for i in range(n)]
for u, v, cost, _ in edges:
    u -= 1
    v -= 1
    graph[u].append((v, cost))
    graph[v].append((u, cost))

start = n - 1
dist = dijkstra(start, graph)
ans += dist[0]

path = [0]
v = 0
while v != n - 1:
    for prv_v, cost in graph[v]:
        if dist[prv_v] + cost == dist[v]:
            path.append(prv_v)
            v = prv_v
            break

mapping = set([])
for u, v in zip(path, path[1:]):
    mapping.add((u, v))
    mapping.add((v, u))


graph = [[] for i in range(n)]
for u, v, c, d in edges:
    u -= 1
    v -= 1
    if (u, v) in mapping:
        graph[u].append((v, d))
        graph[v].append((u, d))
    else:
        graph[u].append((v, c))
        graph[v].append((u, c))

start = 0
dist = dijkstra(start, graph)
ans += dist[-1]

print(ans)
0