結果

問題 No.1301 Strange Graph Shortest Path
ユーザー zkouzkou
提出日時 2020-11-04 23:14:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,198 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 75,540 KB
最終ジャッジ日時 2024-09-13 00:38:03
合計ジャッジ時間 36,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 805 ms
51,828 KB
testcase_04 AC 1,250 ms
72,904 KB
testcase_05 AC 830 ms
60,488 KB
testcase_06 AC 1,140 ms
67,104 KB
testcase_07 AC 1,008 ms
62,200 KB
testcase_08 AC 826 ms
52,108 KB
testcase_09 AC 1,099 ms
60,556 KB
testcase_10 WA -
testcase_11 AC 1,153 ms
66,524 KB
testcase_12 AC 1,180 ms
68,500 KB
testcase_13 AC 1,014 ms
62,468 KB
testcase_14 AC 1,051 ms
57,808 KB
testcase_15 AC 1,007 ms
61,708 KB
testcase_16 AC 1,270 ms
73,688 KB
testcase_17 AC 1,080 ms
64,172 KB
testcase_18 AC 955 ms
60,204 KB
testcase_19 AC 1,157 ms
68,104 KB
testcase_20 AC 1,168 ms
70,176 KB
testcase_21 AC 1,063 ms
63,464 KB
testcase_22 AC 1,213 ms
72,248 KB
testcase_23 AC 1,048 ms
63,048 KB
testcase_24 AC 1,183 ms
69,396 KB
testcase_25 AC 1,263 ms
70,360 KB
testcase_26 AC 1,111 ms
63,592 KB
testcase_27 AC 1,173 ms
65,696 KB
testcase_28 AC 867 ms
59,808 KB
testcase_29 WA -
testcase_30 AC 1,207 ms
68,504 KB
testcase_31 AC 1,281 ms
70,740 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,160 ms
65,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import * 

input = sys.stdin.readline

INF = float("inf")

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 が持つのは、(コスト, 頂点)
# dijkstra 1回目
pq = [(0, 0)]
dp = [INF] * N
dp[0] = 0
parent = [-1] * N
while pq:
    cost, v = heappop(pq)
    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], nv))
# print(dp)
v = N - 1
while v != 0:
    p = parent[v]
    adj[v][p] = adj[p][v] = uv2d[(v, p)]
    v = p

# pq が持つのは、(コスト, 頂点)
# dijkstra 2回目
pq = [(dp[N - 1], N - 1)]
for i in range(N - 1):
    dp[i] = INF
# parent = [-1] * N
while pq:
    cost, v = heappop(pq)
    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], nv))
# print(dp)
print(dp[0])
0