結果

問題 No.2095 High Rise
ユーザー flippergoflippergo
提出日時 2024-09-24 11:22:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 85,940 KB
最終ジャッジ日時 2024-09-24 11:22:33
合計ジャッジ時間 4,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,064 KB
testcase_01 AC 37 ms
52,816 KB
testcase_02 AC 34 ms
53,344 KB
testcase_03 AC 34 ms
52,612 KB
testcase_04 AC 34 ms
53,212 KB
testcase_05 AC 35 ms
53,088 KB
testcase_06 AC 35 ms
53,280 KB
testcase_07 AC 35 ms
52,880 KB
testcase_08 AC 34 ms
52,756 KB
testcase_09 AC 35 ms
53,004 KB
testcase_10 AC 35 ms
52,860 KB
testcase_11 AC 35 ms
53,320 KB
testcase_12 AC 48 ms
64,252 KB
testcase_13 AC 46 ms
63,108 KB
testcase_14 AC 47 ms
64,416 KB
testcase_15 AC 47 ms
63,428 KB
testcase_16 AC 44 ms
62,740 KB
testcase_17 AC 77 ms
76,432 KB
testcase_18 AC 70 ms
76,768 KB
testcase_19 AC 52 ms
67,640 KB
testcase_20 AC 75 ms
76,432 KB
testcase_21 AC 116 ms
80,704 KB
testcase_22 AC 200 ms
85,772 KB
testcase_23 AC 188 ms
85,940 KB
testcase_24 AC 187 ms
85,904 KB
testcase_25 AC 188 ms
85,536 KB
testcase_26 AC 188 ms
85,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(N)]
INFTY = 10**13
dp = [[INFTY for _ in range(M)] for _ in range(N)]
dpmin = [INFTY]*N
for j in range(M):
    dp[0][j] = 0
    dpmin[0] = min(dpmin[0],dp[0][j])
if N>=2:
    for j in range(M):
        dp[1][j] = A[0][j]+A[1][j]
        dpmin[1] = min(dpmin[1],dp[1][j])
for i in range(2,N):
    for j in range(M):
        dp[i][j] = dp[i-1][j]+A[i][j]
        if dpmin[i-1]!=dp[i-1][j]:
            dp[i][j] = min(dp[i][j],dpmin[i-1]+A[i-1][j]+A[i][j])
        dpmin[i] = min(dpmin[i],dp[i][j])
print(min(dp[N-1]))
0