結果

問題 No.1995 CHIKA Road
ユーザー lloyzlloyz
提出日時 2022-07-01 22:04:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,092 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 367,448 KB
最終ジャッジ日時 2024-11-26 05:11:14
合計ジャッジ時間 96,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,480 KB
testcase_01 AC 45 ms
259,596 KB
testcase_02 AC 45 ms
61,256 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 289 ms
92,820 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heapify, heappop, heappush

n, m = map(int, input().split())
Edge = defaultdict(list)
A, B = set(), set()
for _ in range(m):
    a, b = map(int, input().split())
    Edge[a - 1].append((b - 1, 2 * b - 2 * a - 1))
    A.add(a - 1)

INF = 10**18
DP = defaultdict(lambda: INF)
DP[0] = 0
H = [(0, 0)]
heapify(H)
while H:
    ccost, cp = heappop(H)
    if ccost > DP[cp]:
        continue
    if cp == n - 1:
        print(ccost)
        break
    seen = set()
    for np, dcost in Edge[cp]:
        seen.add(np)
        if ccost + dcost >= DP[np]:
            continue
        DP[np] = ccost + dcost
        heappush(H, (ccost + dcost, np))
    for np in A:
        if np in seen:
            continue
        if cp >= np:
            continue
        if ccost + 2 * (np - cp) >= DP[np]:
            continue
        DP[np] = ccost + 2 * (np - cp)
        heappush(H, (ccost + 2 + (np - cp), np))
    if ccost + 2 * (n - 1 - cp) < DP[n - 1]:
        DP[n - 1] = ccost + 2 * (n - 1 - cp)
        heappush(H, (ccost + 2 * (n - 1 - cp), n - 1))
0