結果

問題 No.1 道のショートカット
ユーザー DialBirdDialBird
提出日時 2019-07-03 08:54:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,741 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-20 16:41:17
合計ジャッジ時間 15,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 76 ms
12,032 KB
testcase_05 AC 75 ms
12,032 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 1,393 ms
12,544 KB
testcase_09 AC 762 ms
12,544 KB
testcase_10 AC 424 ms
12,416 KB
testcase_11 AC 497 ms
12,416 KB
testcase_12 AC 1,737 ms
12,544 KB
testcase_13 AC 1,741 ms
12,416 KB
testcase_14 AC 121 ms
12,544 KB
testcase_15 AC 80 ms
12,288 KB
testcase_16 AC 307 ms
12,416 KB
testcase_17 AC 83 ms
12,288 KB
testcase_18 AC 135 ms
12,416 KB
testcase_19 AC 161 ms
12,288 KB
testcase_20 AC 212 ms
12,416 KB
testcase_21 AC 202 ms
12,160 KB
testcase_22 AC 134 ms
12,288 KB
testcase_23 AC 446 ms
12,544 KB
testcase_24 AC 503 ms
12,416 KB
testcase_25 AC 237 ms
12,416 KB
testcase_26 AC 166 ms
12,160 KB
testcase_27 AC 739 ms
12,544 KB
testcase_28 AC 90 ms
12,032 KB
testcase_29 AC 193 ms
12,672 KB
testcase_30 AC 91 ms
12,288 KB
testcase_31 AC 102 ms
12,288 KB
testcase_32 AC 806 ms
12,288 KB
testcase_33 AC 539 ms
12,544 KB
testcase_34 AC 557 ms
12,288 KB
testcase_35 AC 83 ms
12,288 KB
testcase_36 AC 228 ms
12,544 KB
testcase_37 AC 91 ms
12,160 KB
testcase_38 AC 106 ms
12,288 KB
testcase_39 AC 240 ms
12,416 KB
testcase_40 AC 121 ms
12,160 KB
testcase_41 AC 90 ms
12,160 KB
testcase_42 AC 76 ms
12,288 KB
testcase_43 AC 82 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def main
  n = gets.to_i - 1
  c = gets.to_i
  v = gets.to_i
  s = gets.split.map { |val| val.to_i - 1 }.freeze
  t = gets.split.map { |val| val.to_i - 1 }.freeze
  y = gets.split.map(&:to_i).freeze
  m = gets.split.map(&:to_i).freeze
  dp = Array.new(n + 1) { Array.new(c + 1, Float::INFINITY) }
  dp[0][0] = 0

  [*0..(n + 1)].product([*0..(c + 1)]) do |cur, total|
    v.times do |i|
      next if cur != s[i] || c < total + y[i]

      dp[t[i]][total + y[i]] =
        [dp[t[i]][total + y[i]], dp[cur][total] + m[i]].min
    end
  end
  dp[n].min.infinite? ? -1 : dp[n].min
end

puts main
0