結果

問題 No.2095 High Rise
ユーザー lloyzlloyz
提出日時 2022-10-07 22:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,019 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 85,876 KB
最終ジャッジ日時 2024-06-12 20:27:47
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,804 KB
testcase_01 AC 35 ms
53,088 KB
testcase_02 AC 38 ms
52,556 KB
testcase_03 AC 38 ms
53,292 KB
testcase_04 AC 37 ms
52,880 KB
testcase_05 AC 36 ms
53,060 KB
testcase_06 AC 35 ms
53,436 KB
testcase_07 AC 34 ms
52,756 KB
testcase_08 AC 35 ms
52,300 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 34 ms
52,980 KB
testcase_11 AC 34 ms
53,784 KB
testcase_12 AC 48 ms
63,716 KB
testcase_13 AC 48 ms
61,980 KB
testcase_14 AC 49 ms
63,900 KB
testcase_15 AC 48 ms
63,796 KB
testcase_16 AC 48 ms
62,592 KB
testcase_17 AC 80 ms
76,380 KB
testcase_18 AC 78 ms
76,488 KB
testcase_19 AC 52 ms
68,600 KB
testcase_20 AC 74 ms
76,340 KB
testcase_21 AC 95 ms
79,936 KB
testcase_22 AC 192 ms
85,876 KB
testcase_23 AC 191 ms
85,600 KB
testcase_24 AC 190 ms
85,724 KB
testcase_25 AC 199 ms
85,524 KB
testcase_26 AC 198 ms
85,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10**18
DP = [[INF for _ in range(m)] for _ in range(n - 1)]
prev_min_c = INF
prev_min_c_pos = set()
for i in range(m):
    DP[0][i] = A[0][i] + A[1][i]
    if DP[0][i] < prev_min_c:
        prev_min_c = DP[0][i]
        prev_min_c_pos = set([i])
    elif DP[0][i] == prev_min_c:
        prev_min_c_pos.add(i)
for i in range(2, n):
    curr_min_c = INF
    curr_min_c_pos = set()
    for j in range(m):
        if j in prev_min_c_pos:
            DP[i - 1][j] = min(DP[i - 2][j] + A[i][j], prev_min_c + A[i][j])
        else:
            DP[i - 1][j] = min(DP[i - 2][j] + A[i][j], prev_min_c + A[i][j] + A[i - 1][j])
        if DP[i - 1][j] < curr_min_c:
            curr_min_c = DP[i - 1][j]
            curr_min_c_pos = set([j])
        elif DP[i - 1][j] == curr_min_c:
            curr_min_c_pos.add(j)
    prev_min_c = curr_min_c
    prev_min_c_pos = curr_min_c_pos
print(min(DP[-1]))
0