結果

問題 No.2095 High Rise
ユーザー pitPpitP
提出日時 2022-10-08 08:52:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 85,736 KB
最終ジャッジ日時 2024-06-22 06:49:04
合計ジャッジ時間 5,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,680 KB
testcase_01 AC 31 ms
52,156 KB
testcase_02 AC 31 ms
53,400 KB
testcase_03 AC 31 ms
52,504 KB
testcase_04 AC 32 ms
53,348 KB
testcase_05 AC 33 ms
52,528 KB
testcase_06 AC 34 ms
52,476 KB
testcase_07 AC 32 ms
52,472 KB
testcase_08 AC 33 ms
51,748 KB
testcase_09 AC 33 ms
52,276 KB
testcase_10 AC 32 ms
52,888 KB
testcase_11 AC 34 ms
52,828 KB
testcase_12 AC 44 ms
63,028 KB
testcase_13 AC 41 ms
62,536 KB
testcase_14 AC 43 ms
62,628 KB
testcase_15 AC 40 ms
62,072 KB
testcase_16 AC 39 ms
60,860 KB
testcase_17 AC 69 ms
76,644 KB
testcase_18 AC 63 ms
77,052 KB
testcase_19 AC 45 ms
66,992 KB
testcase_20 AC 61 ms
75,976 KB
testcase_21 AC 75 ms
80,056 KB
testcase_22 AC 158 ms
85,612 KB
testcase_23 AC 162 ms
85,612 KB
testcase_24 AC 160 ms
85,672 KB
testcase_25 AC 158 ms
85,736 KB
testcase_26 AC 162 ms
85,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1<<60


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

dp = [[INF] * M for _ in range(N)]
val = INF
for j in range(M):
    dp[1][j] = A[0][j] + A[1][j]
    val = min(val , dp[1][j])

for i in range(2,N):
    nxt_val = INF
    for j in range(M):
        dp[i][j] = min(dp[i-1][j] + A[i][j] , val + A[i-1][j] + A[i][j] )
        nxt_val = min(nxt_val,dp[i][j])
    val = nxt_val

print(min(dp[N-1][:]))
0