結果

問題 No.1 道のショートカット
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-29 14:05:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,901 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-20 16:40:10
合計ジャッジ時間 16,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
11,904 KB
testcase_01 AC 87 ms
11,904 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 86 ms
11,904 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 86 ms
12,032 KB
testcase_08 AC 1,507 ms
12,160 KB
testcase_09 AC 813 ms
12,288 KB
testcase_10 AC 469 ms
12,288 KB
testcase_11 AC 540 ms
12,416 KB
testcase_12 AC 1,896 ms
12,544 KB
testcase_13 AC 1,901 ms
12,544 KB
testcase_14 AC 135 ms
12,416 KB
testcase_15 AC 91 ms
12,032 KB
testcase_16 AC 313 ms
12,416 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 147 ms
12,160 KB
testcase_19 AC 178 ms
12,160 KB
testcase_20 AC 231 ms
12,288 KB
testcase_21 AC 223 ms
12,288 KB
testcase_22 AC 145 ms
12,288 KB
testcase_23 AC 482 ms
12,544 KB
testcase_24 AC 551 ms
12,416 KB
testcase_25 AC 265 ms
12,032 KB
testcase_26 AC 184 ms
12,160 KB
testcase_27 AC 795 ms
12,672 KB
testcase_28 AC 93 ms
12,160 KB
testcase_29 AC 209 ms
12,288 KB
testcase_30 AC 102 ms
12,160 KB
testcase_31 AC 117 ms
12,160 KB
testcase_32 AC 880 ms
12,416 KB
testcase_33 AC 587 ms
12,416 KB
testcase_34 AC 605 ms
12,288 KB
testcase_35 AC 91 ms
11,904 KB
testcase_36 AC 249 ms
12,288 KB
testcase_37 AC 106 ms
12,160 KB
testcase_38 AC 113 ms
12,288 KB
testcase_39 AC 255 ms
12,160 KB
testcase_40 AC 131 ms
12,160 KB
testcase_41 AC 97 ms
11,904 KB
testcase_42 AC 86 ms
12,032 KB
testcase_43 AC 93 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i - 1
c = gets.to_i 
v = gets.to_i
s = gets.split.map{|s| s.to_i - 1 }
t = gets.split.map{|s| s.to_i - 1 }
y = gets.split.map(&:to_i) # コスト
m = gets.split.map(&:to_i) # 時間


# dp[現在地点][コスト] = 時間 
dp = Array.new(n + 1){ Array.new(c + 1, Float::INFINITY) }
dp[0][0] = 0

[*0..(n + 1)].product([*0..(c + 1)]) do |current, amount|
  v.times do |i|
    next if current != s[i]
    dp[t[i]][amount + y[i]] = [dp[t[i]][amount + y[i]], dp[current][amount] + m[i]].min if amount + y[i] <= c
  end
end

ans = dp[n].min
puts (ans == Float::INFINITY) ? -1 : ans
0