結果

問題 No.1 道のショートカット
ユーザー wotsushiwotsushi
提出日時 2016-12-18 09:56:53
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 534 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-07-08 04:36:18
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 72 ms
12,032 KB
testcase_06 AC 72 ms
12,032 KB
testcase_07 AC 72 ms
12,032 KB
testcase_08 AC 159 ms
14,080 KB
testcase_09 RE -
testcase_10 AC 98 ms
12,800 KB
testcase_11 AC 108 ms
12,672 KB
testcase_12 AC 179 ms
13,952 KB
testcase_13 AC 179 ms
14,720 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 95 ms
12,928 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 132 ms
13,440 KB
testcase_24 AC 150 ms
13,696 KB
testcase_25 AC 107 ms
12,672 KB
testcase_26 AC 100 ms
12,544 KB
testcase_27 AC 132 ms
13,568 KB
testcase_28 RE -
testcase_29 AC 88 ms
12,800 KB
testcase_30 AC 77 ms
12,416 KB
testcase_31 AC 86 ms
12,416 KB
testcase_32 AC 147 ms
13,312 KB
testcase_33 AC 120 ms
13,312 KB
testcase_34 AC 142 ms
13,184 KB
testcase_35 AC 81 ms
12,032 KB
testcase_36 AC 89 ms
12,544 KB
testcase_37 AC 78 ms
12,160 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 81 ms
12,160 KB
testcase_41 AC 76 ms
12,160 KB
testcase_42 RE -
testcase_43 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
C = gets.to_i
V = gets.to_i
S = gets.split.map(&:to_i)
T = gets.split.map(&:to_i)
Y = gets.split.map(&:to_i)
M = gets.split.map(&:to_i)
e = S.zip(T, Y, M).group_by {|(s, t, y, m)| s}
dp = Array.new(N + 1) { Array.new(C + 1, Float::INFINITY)}
dp[1][C] = 0
[*1..(N - 1)].product([*1..C]).each do |(s, c)|
  e[s].select {|_, t, y, m| y <= c}.each do |(_, t, y, m)|
    dp[t][c - y] = [dp[t][c - y], dp[s][c] + m].min
  end
end
ans = if dp[N].min < Float::INFINITY
        dp[N].min
      else
        -1
      end
puts ans
0