結果

問題 No.1077 Noelちゃんと星々4
ユーザー universatouniversato
提出日時 2020-06-12 22:19:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,883 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-06-24 05:13:32
合計ジャッジ時間 21,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,288 KB
testcase_01 AC 104 ms
12,288 KB
testcase_02 AC 1,334 ms
65,664 KB
testcase_03 AC 1,682 ms
81,536 KB
testcase_04 AC 564 ms
32,768 KB
testcase_05 AC 432 ms
27,136 KB
testcase_06 AC 709 ms
39,040 KB
testcase_07 AC 794 ms
43,008 KB
testcase_08 AC 611 ms
34,560 KB
testcase_09 AC 545 ms
31,360 KB
testcase_10 AC 1,662 ms
81,152 KB
testcase_11 AC 1,106 ms
57,088 KB
testcase_12 AC 916 ms
48,640 KB
testcase_13 AC 424 ms
26,880 KB
testcase_14 AC 1,662 ms
79,744 KB
testcase_15 AC 891 ms
47,616 KB
testcase_16 AC 624 ms
35,328 KB
testcase_17 AC 1,004 ms
52,480 KB
testcase_18 AC 1,689 ms
82,688 KB
testcase_19 AC 411 ms
25,984 KB
testcase_20 AC 94 ms
12,160 KB
testcase_21 AC 1,883 ms
90,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

inf = 10**4 * n
m = y.max
dp = Array.new(n+1){ [inf] * (m+1) }
dp[0][0] = 0

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