結果

問題 No.2095 High Rise
ユーザー tobusakanatobusakana
提出日時 2022-11-25 22:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-10-02 04:37:34
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 53 ms
60,544 KB
testcase_13 AC 48 ms
60,416 KB
testcase_14 AC 51 ms
61,952 KB
testcase_15 AC 49 ms
61,184 KB
testcase_16 AC 48 ms
59,648 KB
testcase_17 AC 72 ms
76,800 KB
testcase_18 AC 72 ms
76,672 KB
testcase_19 AC 52 ms
64,896 KB
testcase_20 AC 71 ms
76,160 KB
testcase_21 AC 89 ms
77,568 KB
testcase_22 AC 176 ms
85,272 KB
testcase_23 AC 173 ms
85,120 KB
testcase_24 AC 180 ms
85,120 KB
testcase_25 AC 198 ms
85,376 KB
testcase_26 AC 176 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
N,M = map(int,readline().split())
if N == 1:
    print(0)
    exit(0)
A = [list(map(int,readline().split())) for i in range(N)]
INF = 1 << 60

dp = [INF] * M # 現在i番目が壊されている状態のときの最小コスト
best = INF # その階にいるときの最小コスト
for j in range(M):
    dp[j] = A[0][j]
    if best > dp[j]:
        best = dp[j]
        
for i in range(1, N):
    new_dp = [INF] * M
    next_best = INF
    for j in range(M):
        new_dp[j] = min(dp[j] + A[i][j], best + A[i - 1][j] + A[i][j])
#        print("j",j,"で上がるときのコスト",new_dp[j])
        if next_best > new_dp[j]:
            next_best = new_dp[j]
    dp = new_dp
    best = next_best
#    print("i",i,"dp",dp)
    
print(min(dp))
0