結果

問題 No.1283 Extra Fee
ユーザー c-yanc-yan
提出日時 2020-11-12 11:15:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,829 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 116,072 KB
最終ジャッジ日時 2024-07-22 19:09:28
合計ジャッジ時間 29,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 41 ms
53,120 KB
testcase_06 AC 47 ms
53,888 KB
testcase_07 AC 45 ms
53,248 KB
testcase_08 AC 47 ms
54,144 KB
testcase_09 AC 43 ms
53,504 KB
testcase_10 AC 43 ms
53,760 KB
testcase_11 AC 433 ms
82,804 KB
testcase_12 AC 499 ms
83,540 KB
testcase_13 AC 298 ms
80,312 KB
testcase_14 AC 637 ms
85,076 KB
testcase_15 AC 860 ms
87,648 KB
testcase_16 AC 367 ms
81,560 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,863 ms
99,208 KB
testcase_20 AC 1,760 ms
98,960 KB
testcase_21 AC 1,791 ms
99,832 KB
testcase_22 AC 1,632 ms
96,412 KB
testcase_23 AC 1,023 ms
86,440 KB
testcase_24 AC 1,032 ms
86,180 KB
testcase_25 AC 1,893 ms
99,788 KB
testcase_26 AC 1,855 ms
99,736 KB
testcase_27 AC 1,874 ms
100,056 KB
testcase_28 AC 1,964 ms
101,056 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

INF = 10 ** 15

N, M = map(int, input().split())

c = [[0] * N for _ in range(N)]
for _ in range(M):
    h, w, cc = map(int, input().split())
    c[h - 1][w - 1] = cc

dp0 = [[INF] * N for _ in range(N)]
dp1 = [[INF] * N for _ in range(N)]
dp0[0][0] = 0
q = [(0, 0, 0, 0)]
while q:
    cc, h, w, t = heappop(q)
    if t == 0:
        if dp0[h][w] < cc:
            continue
        if h != 0:
            nh = h - 1
            nw = w
            if dp0[nh][nw] > cc + 1 + c[nh][nw]:
                dp0[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp0[nh][nw], nh, nw, 0))
            if c[nh][nw] > 0 and dp1[nh][nw] > cc + 1:
                dp1[nh][nw] = cc + 1
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if h != N - 1:
            nh = h + 1
            nw = w
            if dp0[nh][nw] > cc + 1 + c[nh][nw]:
                dp0[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp0[nh][nw], nh, nw, 0))
            if c[nh][nw] > 0 and dp1[nh][nw] > cc + 1:
                dp1[nh][nw] = cc + 1
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if w != 0:
            nh = h
            nw = w - 1
            if dp0[nh][nw] > cc + 1 + c[nh][nw]:
                dp0[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp0[nh][nw], nh, nw, 0))
            if c[nh][nw] > 0 and dp1[nh][nw] > cc + 1:
                dp1[nh][nw] = cc + 1
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if w != N - 1:
            nh = h
            nw = w + 1
            if dp0[nh][nw] > cc + 1 + c[nh][nw]:
                dp0[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp0[nh][nw], nh, nw, 0))
            if c[nh][nw] > 0 and dp1[nh][nw] > cc + 1:
                dp1[nh][nw] = cc + 1
                heappush(q, (dp1[nh][nw], nh, nw, 1))
    elif t == 1:
        if dp1[h][w] < cc:
            continue
        if h != 0:
            nh = h - 1
            nw = w
            if dp1[nh][nw] > cc + 1 + c[nh][nw]:
                dp1[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if h != N - 1:
            nh = h + 1
            nw = w
            if dp1[nh][nw] > cc + 1 + c[nh][nw]:
                dp1[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if w != 0:
            nh = h
            nw = w - 1
            if dp1[nh][nw] > cc + 1 + c[nh][nw]:
                dp1[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp1[nh][nw], nh, nw, 1))
        if w != N - 1:
            nh = h
            nw = w + 1
            if dp1[nh][nw] > cc + 1 + c[nh][nw]:
                dp1[nh][nw] = cc + 1 + c[nh][nw]
                heappush(q, (dp1[nh][nw], nh, nw, 1))
print(min(dp0[N - 1][N - 1], dp1[N - 1][N - 1]))
0