結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 1,026 ms
12,160 KB
testcase_05 AC 1,923 ms
12,160 KB
testcase_06 AC 278 ms
12,032 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 93 ms
12,032 KB
testcase_10 AC 1,077 ms
12,416 KB
testcase_11 AC 1,992 ms
12,160 KB
testcase_12 AC 1,171 ms
12,288 KB
testcase_13 AC 390 ms
12,160 KB
testcase_14 AC 402 ms
12,416 KB
testcase_15 TLE -
testcase_16 AC 758 ms
12,416 KB
testcase_17 AC 1,285 ms
12,288 KB
testcase_18 TLE -
testcase_19 AC 335 ms
12,288 KB
testcase_20 AC 170 ms
12,416 KB
testcase_21 AC 92 ms
12,160 KB
testcase_22 AC 1,641 ms
12,288 KB
testcase_23 AC 1,406 ms
12,288 KB
testcase_24 TLE -
testcase_25 AC 848 ms
12,288 KB
testcase_26 AC 95 ms
12,160 KB
testcase_27 AC 93 ms
12,032 KB
testcase_28 AC 92 ms
12,160 KB
testcase_29 AC 93 ms
12,160 KB
testcase_30 AC 93 ms
12,288 KB
testcase_31 AC 94 ms
12,160 KB
testcase_32 AC 93 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