結果

問題 No.1283 Extra Fee
ユーザー rlangevinrlangevin
提出日時 2023-02-05 22:34:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 83,044 KB
最終ジャッジ日時 2024-07-04 08:08:22
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,340 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
52,864 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 72 ms
75,904 KB
testcase_17 AC 118 ms
81,536 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 143 ms
81,664 KB
testcase_24 AC 151 ms
81,916 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 120 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, M = map(int, readline().split())
inf = 10 ** 18
dp0 = [[inf] * N for i in range(N)]
dp1 = [[inf] * N for i in range(N)]
cost = [[0] * N for i in range(N)]
dp0[0][0] = 0

for i in range(M):
    h, w, c = map(int, readline().split())
    h, w = h - 1, w - 1
    cost[h][w] = c
    
for i in range(N):
    for j in range(N):
        if i - 1 >= 0:
            dp0[i][j] = min(dp0[i][j], dp0[i - 1][j] + cost[i][j])
            dp1[i][j] = min(dp1[i][j], dp1[i - 1][j] + cost[i][j])
            dp1[i][j] = min(dp1[i][j], dp0[i - 1][j])
        if j - 1 >= 0:
            dp0[i][j] = min(dp0[i][j], dp0[i][j - 1] + cost[i][j])
            dp1[i][j] = min(dp1[i][j], dp1[i][j - 1] + cost[i][j])
            dp1[i][j] = min(dp1[i][j], dp0[i][j - 1])
            
print(min(dp0[-1][-1], dp1[-1][-1]) + 2 * (N - 1))
0