結果

問題 No.37 遊園地のアトラクション
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-30 09:11:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 727 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-10-10 13:34:21
合計ジャッジ時間 7,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
13,696 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 175 ms
13,568 KB
testcase_03 AC 228 ms
14,464 KB
testcase_04 AC 140 ms
12,928 KB
testcase_05 AC 166 ms
13,696 KB
testcase_06 AC 164 ms
13,440 KB
testcase_07 AC 528 ms
19,968 KB
testcase_08 AC 134 ms
12,800 KB
testcase_09 AC 104 ms
12,672 KB
testcase_10 AC 415 ms
18,176 KB
testcase_11 AC 424 ms
17,920 KB
testcase_12 AC 176 ms
13,696 KB
testcase_13 AC 213 ms
14,336 KB
testcase_14 AC 144 ms
13,056 KB
testcase_15 AC 146 ms
13,056 KB
testcase_16 AC 280 ms
15,360 KB
testcase_17 AC 252 ms
14,848 KB
testcase_18 AC 510 ms
19,712 KB
testcase_19 AC 104 ms
12,544 KB
testcase_20 AC 227 ms
14,592 KB
testcase_21 AC 151 ms
13,056 KB
testcase_22 AC 727 ms
22,784 KB
testcase_23 AC 90 ms
12,160 KB
testcase_24 AC 90 ms
12,160 KB
testcase_25 AC 89 ms
12,416 KB
testcase_26 AC 89 ms
12,288 KB
testcase_27 AC 156 ms
13,312 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 126 ms
12,672 KB
testcase_30 AC 88 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

t = gets.to_i
n = gets.to_i
c = gets.split.map(&:to_i) # 並び時間
v = gets.split.map(&:to_i) # 満足度

n.times do |i|
  x = v[i] / 2
  while x > 0
    c << c[i]
    v << x
    x /= 2
  end
end

# dp[チェックしたアトラクションの数][並んだ時間] = 満足度
m = c.size
dp = Array.new(m + 1){ Array.new(t + 1, -Float::INFINITY) }
dp[0][0] = 0

m.times do |i|
  (t + 1).times do |j|
    dp[i + 1][j] = [dp[i + 1][j], dp[i][j]].max
    dp[i + 1][j + c[i]] = [dp[i + 1][j + c[i]], dp[i][j] + v[i]].max if j + c[i] <= t
  end
end

puts dp[-1].max
0