結果

問題 No.1077 Noelちゃんと星々4
ユーザー universatouniversato
提出日時 2020-06-12 23:32:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,426 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-24 06:04:29
合計ジャッジ時間 16,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 88 ms
12,416 KB
testcase_02 AC 1,013 ms
12,288 KB
testcase_03 AC 1,285 ms
12,160 KB
testcase_04 AC 440 ms
12,160 KB
testcase_05 AC 347 ms
12,288 KB
testcase_06 AC 531 ms
12,288 KB
testcase_07 AC 603 ms
12,160 KB
testcase_08 AC 466 ms
12,288 KB
testcase_09 AC 416 ms
12,288 KB
testcase_10 AC 1,265 ms
12,288 KB
testcase_11 AC 845 ms
12,160 KB
testcase_12 AC 709 ms
12,416 KB
testcase_13 AC 337 ms
12,160 KB
testcase_14 AC 1,237 ms
12,288 KB
testcase_15 AC 674 ms
12,416 KB
testcase_16 AC 484 ms
12,416 KB
testcase_17 AC 769 ms
12,288 KB
testcase_18 AC 1,286 ms
12,416 KB
testcase_19 AC 320 ms
12,160 KB
testcase_20 AC 85 ms
12,416 KB
testcase_21 AC 1,426 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_s.to_i
y = gets.to_s.split.map{|t| t.to_i }

inf = 10**4 * n
dp = [inf] * (y.max + 1)
dp[0] = 0

m = 0
y.each_with_index do |t, i|
  
  m = t if m < t
  
  dp[0] = dp[0] + t
  
  1.upto(t) do |j|
    dp[j] = [dp[j] + t - j, dp[j-1] - 1 ].min
  end
  
  (t+1).upto(m) do |j|
    dp[j] = [dp[j] + j - t, dp[j-1] + 1 ].min
  end
end

ans = dp.min
puts ans
0