結果

問題 No.1995 CHIKA Road
ユーザー lloyzlloyz
提出日時 2022-07-01 22:05:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,092 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 372,664 KB
最終ジャッジ日時 2024-11-26 05:15:15
合計ジャッジ時間 90,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
62,600 KB
testcase_01 AC 40 ms
194,140 KB
testcase_02 AC 40 ms
61,608 KB
testcase_03 AC 40 ms
174,384 KB
testcase_04 AC 44 ms
70,172 KB
testcase_05 AC 64 ms
187,080 KB
testcase_06 AC 1,621 ms
99,248 KB
testcase_07 TLE -
testcase_08 AC 79 ms
83,420 KB
testcase_09 AC 66 ms
170,748 KB
testcase_10 AC 255 ms
92,872 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 AC 1,526 ms
96,120 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,818 ms
98,144 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 1,243 ms
372,664 KB
権限があれば一括ダウンロードができます

ソースコード

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