結果

問題 No.2095 High Rise
ユーザー simansiman
提出日時 2022-10-10 19:56:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-06-24 16:55:15
合計ジャッジ時間 9,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 83 ms
12,288 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 86 ms
12,288 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 83 ms
12,416 KB
testcase_08 AC 84 ms
12,416 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 83 ms
12,032 KB
testcase_12 AC 85 ms
12,288 KB
testcase_13 AC 86 ms
12,288 KB
testcase_14 AC 90 ms
12,416 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 84 ms
12,416 KB
testcase_17 AC 150 ms
14,336 KB
testcase_18 AC 129 ms
13,568 KB
testcase_19 AC 94 ms
12,416 KB
testcase_20 AC 153 ms
14,336 KB
testcase_21 AC 217 ms
16,384 KB
testcase_22 AC 649 ms
30,592 KB
testcase_23 AC 651 ms
30,592 KB
testcase_24 AC 651 ms
30,848 KB
testcase_25 AC 649 ms
30,592 KB
testcase_26 AC 651 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = N.times.map { gets.split.map(&:to_i) }

if N == 1
  puts 0
  exit
end

dp = Array.new(N) { Array.new(M, Float::INFINITY) }

N.times do |i|
  if i == 0
    M.times do |j|
      dp[i][j] = A[i][j]
    end
  else
    min_v = Float::INFINITY

    M.times do |j|
      dp[i][j] = dp[i - 1][j] + A[i][j]
      min_v = dp[i][j] if min_v > dp[i][j]
    end

    M.times do |j|
      nv = min_v + A[i][j]
      dp[i][j] = nv if dp[i][j] > nv
    end
  end
end

puts dp[N - 1].min
0