結果

問題 No.1283 Extra Fee
ユーザー c-yanc-yan
提出日時 2020-11-12 11:15:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,829 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 86,936 KB
実行使用メモリ 119,584 KB
最終ジャッジ日時 2023-09-30 01:12:34
合計ジャッジ時間 28,506 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,428 KB
testcase_01 AC 74 ms
71,528 KB
testcase_02 AC 72 ms
71,212 KB
testcase_03 AC 73 ms
71,360 KB
testcase_04 AC 74 ms
71,328 KB
testcase_05 AC 72 ms
71,340 KB
testcase_06 AC 77 ms
71,340 KB
testcase_07 AC 73 ms
71,020 KB
testcase_08 AC 77 ms
71,484 KB
testcase_09 AC 75 ms
71,232 KB
testcase_10 AC 75 ms
71,228 KB
testcase_11 AC 426 ms
84,496 KB
testcase_12 AC 485 ms
86,520 KB
testcase_13 AC 313 ms
81,720 KB
testcase_14 AC 621 ms
88,664 KB
testcase_15 AC 812 ms
90,112 KB
testcase_16 AC 386 ms
83,620 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,673 ms
103,580 KB
testcase_20 AC 1,606 ms
102,464 KB
testcase_21 AC 1,596 ms
101,120 KB
testcase_22 AC 1,488 ms
99,492 KB
testcase_23 AC 938 ms
88,164 KB
testcase_24 AC 950 ms
87,936 KB
testcase_25 AC 1,692 ms
104,424 KB
testcase_26 AC 1,680 ms
104,080 KB
testcase_27 AC 1,674 ms
103,024 KB
testcase_28 AC 1,856 ms
105,040 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