結果

問題 No.2095 High Rise
ユーザー roarisroaris
提出日時 2022-10-07 22:07:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 86,128 KB
最終ジャッジ日時 2024-06-12 18:39:38
合計ジャッジ時間 3,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,128 KB
testcase_01 AC 32 ms
53,512 KB
testcase_02 AC 32 ms
53,420 KB
testcase_03 AC 31 ms
52,312 KB
testcase_04 AC 32 ms
52,740 KB
testcase_05 AC 31 ms
53,740 KB
testcase_06 AC 30 ms
54,092 KB
testcase_07 AC 33 ms
53,008 KB
testcase_08 AC 33 ms
52,256 KB
testcase_09 AC 32 ms
52,616 KB
testcase_10 AC 32 ms
52,552 KB
testcase_11 AC 34 ms
52,272 KB
testcase_12 AC 50 ms
67,620 KB
testcase_13 AC 45 ms
65,872 KB
testcase_14 AC 49 ms
67,676 KB
testcase_15 AC 49 ms
66,008 KB
testcase_16 AC 46 ms
63,824 KB
testcase_17 AC 75 ms
76,756 KB
testcase_18 AC 76 ms
76,800 KB
testcase_19 AC 51 ms
70,584 KB
testcase_20 AC 71 ms
76,664 KB
testcase_21 AC 98 ms
78,464 KB
testcase_22 AC 174 ms
85,628 KB
testcase_23 AC 184 ms
85,888 KB
testcase_24 AC 165 ms
86,128 KB
testcase_25 AC 173 ms
85,888 KB
testcase_26 AC 166 ms
85,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(N)]

if N==1:
    exit(print(0))
    
dp = a[0][:]

for i in range(1, N):
    ndp = [10**18]*M
    
    for j in range(M):
        ndp[j] = min(ndp[j], dp[j]+a[i][j])
    
    ml = 10**18
    
    for j in range(M):
        ndp[j] = min(ndp[j], ml+a[i-1][j]+a[i][j])
        ml = min(ml, dp[j])
    
    mr = 10**18
    
    for j in range(M-1, -1, -1):
        ndp[j] = min(ndp[j], mr+a[i-1][j]+a[i][j])
        mr = min(mr, dp[j])
    
    dp = ndp

print(min(dp))
0