結果

問題 No.1301 Strange Graph Shortest Path
ユーザー zkouzkou
提出日時 2020-11-04 22:47:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,250 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 133,104 KB
最終ジャッジ日時 2024-09-13 00:36:56
合計ジャッジ時間 20,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,040 KB
testcase_01 AC 38 ms
54,056 KB
testcase_02 WA -
testcase_03 AC 449 ms
108,132 KB
testcase_04 AC 626 ms
128,644 KB
testcase_05 AC 432 ms
116,232 KB
testcase_06 AC 580 ms
122,080 KB
testcase_07 AC 551 ms
122,624 KB
testcase_08 AC 455 ms
108,028 KB
testcase_09 AC 566 ms
121,316 KB
testcase_10 WA -
testcase_11 AC 610 ms
124,200 KB
testcase_12 AC 586 ms
125,120 KB
testcase_13 AC 533 ms
117,424 KB
testcase_14 AC 574 ms
118,912 KB
testcase_15 AC 551 ms
118,684 KB
testcase_16 AC 630 ms
130,168 KB
testcase_17 AC 556 ms
121,992 KB
testcase_18 AC 531 ms
115,856 KB
testcase_19 AC 599 ms
123,500 KB
testcase_20 AC 603 ms
125,444 KB
testcase_21 AC 556 ms
121,664 KB
testcase_22 AC 608 ms
129,328 KB
testcase_23 AC 574 ms
118,368 KB
testcase_24 AC 636 ms
124,760 KB
testcase_25 AC 654 ms
126,580 KB
testcase_26 AC 570 ms
123,864 KB
testcase_27 AC 628 ms
123,180 KB
testcase_28 AC 481 ms
115,300 KB
testcase_29 WA -
testcase_30 AC 658 ms
125,612 KB
testcase_31 AC 643 ms
127,440 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 551 ms
125,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import * 

input = sys.stdin.readline

INF = 10 ** 18

N, M = map(int, input().split())
adj = [dict() for _ in range(N)]
uv2d = dict()
for _ in range(M):
    u, v, c, d = map(int, input().split())
    u -= 1
    v -= 1
    adj[u][v] = adj[v][u] = c
    uv2d[(u, v)] = uv2d[(v, u)] = d

# pq が持つのは、(コスト * N) + 頂点
# dijkstra 1回目
pq = [0]
dp = [INF] * N
dp[0] = 0
parent = [-1] * N
while pq:
    cost, v = divmod(heappop(pq), N)
    if cost > dp[v]:
        continue
    for nv, dist in adj[v].items():
        if dp[nv] > dp[v] + dist:
            dp[nv] = dp[v] + dist
            parent[nv] = v
            heappush(pq, (dp[nv] * N) + nv)

first_cost = dp[N - 1]

v = N - 1
while v != 0:
    p = parent[v]
    adj[v][p] = adj[p][v] = uv2d[(v, p)]
    v = p

# pq が持つのは、(コスト * N) + 頂点
# dijkstra 2回目
pq = [N - 1]
dp = [INF] * N
dp[N - 1] = 0
# parent = [-1] * N
while pq:
    cost, v = divmod(heappop(pq), N)
    if cost > dp[v]:
        continue
    for nv, dist in adj[v].items():
        if dp[nv] > dp[v] + dist:
            dp[nv] = dp[v] + dist
            # parent[nv] = v
            heappush(pq, (dp[nv] * N) + nv)

second_cost = dp[0]

print(first_cost + second_cost)
0