結果

問題 No.2095 High Rise
ユーザー tnogamitnogami
提出日時 2022-10-08 20:42:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,485 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-06-22 23:08:44
合計ジャッジ時間 11,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 33 ms
11,008 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 38 ms
11,264 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 181 ms
21,376 KB
testcase_18 AC 125 ms
17,792 KB
testcase_19 AC 53 ms
12,416 KB
testcase_20 AC 192 ms
22,144 KB
testcase_21 AC 366 ms
32,768 KB
testcase_22 AC 1,470 ms
105,600 KB
testcase_23 AC 1,447 ms
105,472 KB
testcase_24 AC 1,457 ms
105,600 KB
testcase_25 AC 1,400 ms
105,472 KB
testcase_26 AC 1,485 ms
105,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[10**19]*M for _ in range(N+1)]

for i, a in enumerate(A[0]):
    dp[1][i] = a

minimum = min(dp[1])

for n in range(1,N):
    mini = min(dp[n])
    for m in range(M):
        if dp[n][m] == mini:
            dp[n+1][m] = mini + A[n][m]
        else:
            dp[n+1][m] = min(dp[n][m]+A[n][m], mini+A[n-1][m]+A[n][m])

if N == 1:
    print(0)
else:
    print(min(dp[N]))
0