結果

問題 No.2095 High Rise
ユーザー FromBooskaFromBooska
提出日時 2023-06-02 19:09:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-06-08 21:59:30
合計ジャッジ時間 5,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 47 ms
52,096 KB
testcase_09 AC 45 ms
52,096 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 56 ms
62,592 KB
testcase_13 AC 58 ms
63,104 KB
testcase_14 AC 56 ms
62,848 KB
testcase_15 AC 55 ms
61,952 KB
testcase_16 AC 53 ms
61,312 KB
testcase_17 AC 89 ms
76,672 KB
testcase_18 AC 86 ms
76,416 KB
testcase_19 AC 63 ms
66,304 KB
testcase_20 AC 92 ms
76,416 KB
testcase_21 AC 113 ms
80,512 KB
testcase_22 AC 233 ms
98,304 KB
testcase_23 AC 236 ms
98,048 KB
testcase_24 AC 236 ms
98,560 KB
testcase_25 AC 237 ms
98,304 KB
testcase_26 AC 232 ms
98,176 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)
    
#print(A)

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