結果

問題 No.2095 High Rise
ユーザー kept1994kept1994
提出日時 2022-11-03 19:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 93,872 KB
最終ジャッジ日時 2024-07-18 03:19:53
合計ジャッジ時間 4,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,840 KB
testcase_01 AC 39 ms
52,560 KB
testcase_02 AC 39 ms
52,072 KB
testcase_03 AC 38 ms
53,084 KB
testcase_04 AC 38 ms
53,028 KB
testcase_05 AC 38 ms
52,828 KB
testcase_06 AC 39 ms
52,728 KB
testcase_07 AC 39 ms
53,068 KB
testcase_08 AC 39 ms
53,100 KB
testcase_09 AC 38 ms
52,392 KB
testcase_10 AC 39 ms
52,896 KB
testcase_11 AC 39 ms
53,324 KB
testcase_12 AC 51 ms
63,696 KB
testcase_13 AC 49 ms
62,512 KB
testcase_14 AC 52 ms
65,400 KB
testcase_15 AC 50 ms
63,176 KB
testcase_16 AC 47 ms
62,292 KB
testcase_17 AC 84 ms
78,020 KB
testcase_18 AC 79 ms
77,380 KB
testcase_19 AC 57 ms
72,980 KB
testcase_20 AC 85 ms
77,784 KB
testcase_21 AC 111 ms
79,816 KB
testcase_22 AC 278 ms
93,860 KB
testcase_23 AC 278 ms
93,256 KB
testcase_24 AC 281 ms
93,676 KB
testcase_25 AC 284 ms
93,736 KB
testcase_26 AC 276 ms
93,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
INF = 10 ** 16
def main():
    N, M = map(int, input().split())
    if N == 1:
        print(0)
        return
    G = []
    for _ in range(N):
        G.append(list(map(int, input().split())))
    ans = 0
    if M == 1:
        for i in range(N):
            ans += G[i][0]
        print(ans)
        return
    dp = [G[0]] + [[INF] * M for _ in range(N - 1)]
    tmp = sorted(G[0])
    mins = [tmp[0], tmp[1]]
    mins_next = []
    for i in range(1, N):
        for j in range(M):
            up = mins[0] if dp[i - 1][j] != mins[0] else mins[1]
            c = min(dp[i - 1][j] + G[i][j], up + G[i - 1][j] + G[i][j])
            dp[i][j] = c
            mins_next.append(c)
            mins_next.sort()
            mins_next = mins_next[:2]
        mins = mins_next
        mins_next = []
    # for i in range(N):
    #     print(dp[i])
    print(min(dp[-1]))
    return

if __name__ == '__main__':
    main()
0