結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
51,968 KB
testcase_01 AC 58 ms
51,840 KB
testcase_02 AC 58 ms
51,712 KB
testcase_03 AC 57 ms
51,840 KB
testcase_04 AC 53 ms
51,712 KB
testcase_05 AC 52 ms
51,712 KB
testcase_06 AC 52 ms
51,968 KB
testcase_07 AC 57 ms
51,456 KB
testcase_08 AC 53 ms
51,712 KB
testcase_09 AC 52 ms
51,968 KB
testcase_10 AC 55 ms
51,712 KB
testcase_11 AC 52 ms
51,456 KB
testcase_12 AC 127 ms
62,592 KB
testcase_13 AC 77 ms
63,104 KB
testcase_14 AC 76 ms
62,848 KB
testcase_15 AC 75 ms
62,208 KB
testcase_16 AC 70 ms
60,928 KB
testcase_17 AC 115 ms
76,672 KB
testcase_18 AC 104 ms
76,544 KB
testcase_19 AC 82 ms
66,304 KB
testcase_20 AC 116 ms
76,288 KB
testcase_21 AC 149 ms
80,000 KB
testcase_22 AC 283 ms
97,792 KB
testcase_23 AC 303 ms
97,792 KB
testcase_24 AC 268 ms
97,792 KB
testcase_25 AC 280 ms
97,920 KB
testcase_26 AC 277 ms
98,432 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