結果

問題 No.2095 High Rise
ユーザー wgrapewgrape
提出日時 2024-10-18 13:28:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 85,720 KB
最終ジャッジ日時 2024-10-18 13:29:04
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,380 KB
testcase_01 AC 36 ms
51,884 KB
testcase_02 AC 41 ms
53,100 KB
testcase_03 AC 34 ms
52,000 KB
testcase_04 AC 34 ms
53,056 KB
testcase_05 AC 35 ms
52,000 KB
testcase_06 AC 34 ms
53,168 KB
testcase_07 AC 63 ms
53,108 KB
testcase_08 AC 36 ms
53,068 KB
testcase_09 AC 35 ms
52,612 KB
testcase_10 AC 37 ms
53,344 KB
testcase_11 AC 36 ms
52,156 KB
testcase_12 AC 66 ms
63,836 KB
testcase_13 AC 43 ms
61,752 KB
testcase_14 AC 45 ms
63,080 KB
testcase_15 AC 43 ms
62,212 KB
testcase_16 AC 43 ms
62,028 KB
testcase_17 AC 69 ms
76,312 KB
testcase_18 AC 69 ms
76,588 KB
testcase_19 AC 49 ms
66,708 KB
testcase_20 AC 71 ms
76,436 KB
testcase_21 AC 111 ms
79,696 KB
testcase_22 AC 206 ms
85,720 KB
testcase_23 AC 198 ms
85,496 KB
testcase_24 AC 184 ms
85,684 KB
testcase_25 AC 195 ms
85,528 KB
testcase_26 AC 197 ms
85,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[i][j] = i階まで来て、j番目の部屋が取り壊されている
# i + 1階に進むとき、i階のj番目が取り壊されているのであれば、i + 1のj番目だけ壊せばOK
# i階のj番目が取り壊されていない場合はi階のj番目とi + 1階のj番目の両方を壊す必要がある
# 全部屋壊すコスト0の0階を持っておくのが良さそう。

N,M = map(int,input().split())
if N == 1:
    print(0)
    exit(0)
A = [[0] * M] + [list(map(int,input().split())) for i in range(N)]

INF = 1 << 60
dp = [[INF] * M for i in range(N + 1)]

for i in range(M):
    dp[0][i] = 0
    
for i in range(N): # 各階から次の階へ向かう
    # j番目のコストを求めるとき、比較すべきは
    # (1)dp[i][j] + A[i + 1][j] --- 下の階が既に壊されているときのコスト
    # (2)dp[i][j以外の最小値] + A[i][j] + A[i + 1][j] --- 下の階が壊されていないときのコスト
    # ここで、(2)でj以外を考慮しなくても結果に影響はない。従い、(2)ではdp[i][0~M-1]の最小値を求めておけばよい。
    base = min(dp[i])
    for j in range(M):
        dp[i + 1][j] = min(dp[i][j] + A[i + 1][j], base + A[i][j] + A[i + 1][j])
        
print(min(dp[N]))

0