結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,804 KB
testcase_01 AC 37 ms
53,556 KB
testcase_02 WA -
testcase_03 AC 438 ms
108,040 KB
testcase_04 AC 612 ms
128,856 KB
testcase_05 AC 429 ms
116,256 KB
testcase_06 AC 587 ms
122,140 KB
testcase_07 AC 559 ms
122,568 KB
testcase_08 AC 461 ms
107,880 KB
testcase_09 AC 566 ms
121,452 KB
testcase_10 WA -
testcase_11 AC 618 ms
123,892 KB
testcase_12 AC 592 ms
124,984 KB
testcase_13 AC 547 ms
117,576 KB
testcase_14 AC 572 ms
118,896 KB
testcase_15 AC 545 ms
118,688 KB
testcase_16 AC 617 ms
130,092 KB
testcase_17 AC 551 ms
121,696 KB
testcase_18 AC 517 ms
115,660 KB
testcase_19 AC 577 ms
123,500 KB
testcase_20 AC 585 ms
125,520 KB
testcase_21 AC 532 ms
121,724 KB
testcase_22 AC 586 ms
129,244 KB
testcase_23 AC 535 ms
118,500 KB
testcase_24 AC 633 ms
124,852 KB
testcase_25 AC 643 ms
126,096 KB
testcase_26 AC 551 ms
124,284 KB
testcase_27 AC 601 ms
123,776 KB
testcase_28 AC 475 ms
115,420 KB
testcase_29 WA -
testcase_30 AC 636 ms
125,720 KB
testcase_31 AC 639 ms
127,604 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 533 ms
125,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import * 

input = sys.stdin.readline

INF = 10 ** 15

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