結果

問題 No.1163 I want to be a high achiever
ユーザー simansiman
提出日時 2022-12-21 16:34:05
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 470 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-04-29 03:22:43
合計ジャッジ時間 30,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 1,021 ms
12,160 KB
testcase_05 AC 1,910 ms
12,544 KB
testcase_06 AC 278 ms
12,160 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 1,076 ms
12,416 KB
testcase_11 TLE -
testcase_12 AC 1,169 ms
12,416 KB
testcase_13 AC 383 ms
12,288 KB
testcase_14 AC 400 ms
12,416 KB
testcase_15 TLE -
testcase_16 AC 761 ms
12,416 KB
testcase_17 AC 1,288 ms
12,416 KB
testcase_18 TLE -
testcase_19 AC 333 ms
12,416 KB
testcase_20 AC 167 ms
12,160 KB
testcase_21 AC 90 ms
12,160 KB
testcase_22 AC 1,634 ms
12,544 KB
testcase_23 AC 1,409 ms
12,160 KB
testcase_24 TLE -
testcase_25 AC 847 ms
12,160 KB
testcase_26 AC 89 ms
12,032 KB
testcase_27 AC 90 ms
12,032 KB
testcase_28 AC 91 ms
12,032 KB
testcase_29 AC 89 ms
12,032 KB
testcase_30 AC 89 ms
12,032 KB
testcase_31 AC 89 ms
12,032 KB
testcase_32 AC 88 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N, X = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)
C = A.map { |a| a - X }
T = C.sum

if T >= 0
  puts 0
elsif C.max < 0
  puts -1
else
  L = T.abs
  dp = Array.new(L + 1, Float::INFINITY)
  dp[0] = 0

  C.each_with_index do |c, idx|
    next if c >= 0

    L.downto(0) do |i|
      ni = i + c.abs
      ni = L if ni > L

      n_cost = dp[i] + B[idx]
      dp[ni] = n_cost if dp[ni] > n_cost
    end
  end

  puts dp[T.abs..-1].min
end
0