結果

問題 No.1 道のショートカット
ユーザー wotsushiwotsushi
提出日時 2016-12-18 10:03:17
言語 Ruby
(3.4.1)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-20 16:28:22
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 95 ms
12,032 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 90 ms
12,032 KB
testcase_08 AC 188 ms
14,080 KB
testcase_09 AC 139 ms
13,440 KB
testcase_10 AC 121 ms
12,800 KB
testcase_11 AC 129 ms
12,800 KB
testcase_12 AC 209 ms
14,208 KB
testcase_13 AC 210 ms
14,336 KB
testcase_14 AC 101 ms
12,544 KB
testcase_15 AC 87 ms
12,032 KB
testcase_16 AC 110 ms
12,928 KB
testcase_17 AC 91 ms
12,288 KB
testcase_18 AC 95 ms
12,544 KB
testcase_19 AC 102 ms
13,056 KB
testcase_20 AC 104 ms
12,672 KB
testcase_21 AC 121 ms
13,184 KB
testcase_22 AC 110 ms
12,544 KB
testcase_23 AC 164 ms
13,568 KB
testcase_24 AC 184 ms
13,824 KB
testcase_25 AC 117 ms
12,672 KB
testcase_26 AC 110 ms
12,672 KB
testcase_27 AC 145 ms
13,568 KB
testcase_28 AC 91 ms
12,032 KB
testcase_29 AC 99 ms
12,800 KB
testcase_30 AC 89 ms
12,288 KB
testcase_31 AC 96 ms
12,288 KB
testcase_32 AC 149 ms
13,568 KB
testcase_33 AC 132 ms
13,312 KB
testcase_34 AC 156 ms
13,184 KB
testcase_35 AC 90 ms
12,032 KB
testcase_36 AC 102 ms
12,544 KB
testcase_37 AC 93 ms
12,160 KB
testcase_38 AC 89 ms
12,288 KB
testcase_39 AC 107 ms
13,184 KB
testcase_40 AC 94 ms
12,416 KB
testcase_41 AC 87 ms
12,288 KB
testcase_42 AC 84 ms
12,160 KB
testcase_43 AC 82 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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)].select {|s| e[s]}.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