結果

問題 No.1 道のショートカット
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-29 13:59:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-08 05:10:41
合計ジャッジ時間 7,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 93 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 93 ms
12,288 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 254 ms
12,416 KB
testcase_09 AC 155 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 97 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 96 ms
12,032 KB
testcase_18 AC 105 ms
12,416 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 122 ms
12,160 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 121 ms
12,544 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 96 ms
12,032 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 142 ms
12,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 98 ms
12,160 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 92 ms
12,032 KB
testcase_43 AC 97 ms
12,288 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) # 時間

d = Hash.new do |h1, k1|
  h1[k1] = Hash.new{|h2, k2| h2[k2] = []}
end
v.times do |i|
  d[s[i]][t[i]] = d[t[i]][s[i]] = [y[i], m[i]]
end

# 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|
  d[current].each do |nxt, (cost, hour)|
    if amount + cost <= c
      dp[nxt][amount + cost] = [dp[nxt][amount + cost], dp[current][amount] + hour].min
    end
  end
end

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