結果

問題 No.2095 High Rise
ユーザー kept1994kept1994
提出日時 2022-11-03 19:51:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 822 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 93,864 KB
最終ジャッジ日時 2024-07-18 03:17:58
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,688 KB
testcase_01 AC 39 ms
51,752 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 38 ms
53,292 KB
testcase_04 AC 39 ms
52,868 KB
testcase_05 AC 38 ms
52,004 KB
testcase_06 AC 38 ms
52,936 KB
testcase_07 RE -
testcase_08 AC 37 ms
52,272 KB
testcase_09 AC 37 ms
53,148 KB
testcase_10 AC 38 ms
52,348 KB
testcase_11 AC 37 ms
52,116 KB
testcase_12 AC 50 ms
63,320 KB
testcase_13 AC 47 ms
62,724 KB
testcase_14 AC 49 ms
65,216 KB
testcase_15 AC 47 ms
63,096 KB
testcase_16 AC 47 ms
61,852 KB
testcase_17 AC 84 ms
77,920 KB
testcase_18 AC 79 ms
77,128 KB
testcase_19 AC 55 ms
72,616 KB
testcase_20 AC 79 ms
78,128 KB
testcase_21 AC 106 ms
79,828 KB
testcase_22 AC 290 ms
93,324 KB
testcase_23 AC 278 ms
93,384 KB
testcase_24 AC 281 ms
93,312 KB
testcase_25 AC 282 ms
93,864 KB
testcase_26 AC 280 ms
93,844 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())))
    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