結果

問題 No.2095 High Rise
ユーザー FromBooskaFromBooska
提出日時 2023-06-02 19:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-06-08 21:59:34
合計ジャッジ時間 4,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 57 ms
62,464 KB
testcase_13 AC 58 ms
62,976 KB
testcase_14 AC 56 ms
62,720 KB
testcase_15 AC 56 ms
62,080 KB
testcase_16 AC 53 ms
61,056 KB
testcase_17 AC 90 ms
76,544 KB
testcase_18 AC 85 ms
76,800 KB
testcase_19 AC 65 ms
66,688 KB
testcase_20 AC 93 ms
76,416 KB
testcase_21 AC 113 ms
80,000 KB
testcase_22 AC 241 ms
98,048 KB
testcase_23 AC 240 ms
97,792 KB
testcase_24 AC 236 ms
98,432 KB
testcase_25 AC 243 ms
98,048 KB
testcase_26 AC 240 ms
97,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# グラフ化かdpか
# グラフ化なら各階にダミーを用意して、その階のすべての部屋からコスト0でダミーと行き来できる
# 次の階には有向辺
# ここまで考えて、同じ考えでdpをやった方がおそらくTLEしないと思う
# dp[i階目の][部屋j]までの最低コスト
# 縦移動だけでなく横移動もある、横移動の場合はその階の最小値参照
# 1000*1000ならdpにちょうどいい
# 答えはmin(dp[N])

N, M = map(int, input().split())
A = []
for i in range(N):
    temp = list(map(int, input().split()))
    A.append(temp)

INF = 10**20
dp = [[INF]*M for i in range(N+1)]
for j in range(M):
    dp[0][j] = 0

for i in range(1, N+1):
    # 縦移動
    for j in range(M):
        dp[i][j] = min(dp[i][j], dp[i-1][j] + A[i-1][j])
        
    # 横移動
    mn = min(dp[i])
    for j in range(M):
        dp[i][j] = min(dp[i][j], mn + A[i-1][j])
    
    #print(dp[i])
    
ans = min(dp[N])
if N == 1:
    print(0)
else:
    print(ans)
0