結果

問題 No.1301 Strange Graph Shortest Path
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:16:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 99,948 KB
最終ジャッジ日時 2024-07-17 05:32:41
合計ジャッジ時間 17,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,748 KB
testcase_01 AC 36 ms
53,496 KB
testcase_02 WA -
testcase_03 AC 357 ms
90,212 KB
testcase_04 AC 513 ms
98,796 KB
testcase_05 AC 317 ms
89,948 KB
testcase_06 AC 504 ms
96,188 KB
testcase_07 AC 430 ms
93,292 KB
testcase_08 AC 372 ms
90,720 KB
testcase_09 AC 457 ms
95,080 KB
testcase_10 WA -
testcase_11 AC 486 ms
95,616 KB
testcase_12 AC 485 ms
96,368 KB
testcase_13 AC 429 ms
92,728 KB
testcase_14 AC 445 ms
94,328 KB
testcase_15 AC 437 ms
93,592 KB
testcase_16 AC 507 ms
98,828 KB
testcase_17 AC 443 ms
94,088 KB
testcase_18 AC 392 ms
92,108 KB
testcase_19 AC 479 ms
96,520 KB
testcase_20 AC 484 ms
97,480 KB
testcase_21 AC 440 ms
94,232 KB
testcase_22 AC 496 ms
98,204 KB
testcase_23 AC 439 ms
93,780 KB
testcase_24 AC 486 ms
96,936 KB
testcase_25 AC 503 ms
96,864 KB
testcase_26 AC 434 ms
94,176 KB
testcase_27 AC 478 ms
95,668 KB
testcase_28 AC 355 ms
90,872 KB
testcase_29 WA -
testcase_30 AC 511 ms
96,872 KB
testcase_31 AC 493 ms
97,328 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 408 ms
95,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m = map(int, input().split())
C = [0] * m
D = [0] * m
edges = [[] for _ in range(n)]

for i in range(m):
    u, v, C[i], D[i] = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append((v, i))
    edges[v].append((u, i))

def dijkstra():
    dist = [1 << 60] * n
    dist[0] = 0
    bV = [-1] * n
    bE = [-1] * n
    hq = [0]
    while hq:
        tmp = heappop(hq)
        d = tmp // n
        pos = tmp - n * d
        if d > dist[pos]:
            continue
        for npos, i in edges[pos]:
            nd = d + C[i]
            if nd < dist[npos]:
                dist[npos] = nd
                bV[npos] = pos
                bE[npos] = i
                heappush(hq, nd * n + npos)
    
    p = n - 1
    while p != 0:
        i = bE[p]
        C[i] = D[i]
        p = bV[p]
    return dist[-1]

ans = dijkstra() + dijkstra()
print(ans)
0