結果

問題 No.1 道のショートカット
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2014-12-07 19:31:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 916 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-20 16:07:46
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
12,160 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 AC 87 ms
11,904 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 85 ms
11,904 KB
testcase_08 AC 96 ms
12,160 KB
testcase_09 AC 94 ms
12,288 KB
testcase_10 AC 98 ms
12,160 KB
testcase_11 AC 111 ms
12,032 KB
testcase_12 AC 121 ms
12,160 KB
testcase_13 AC 116 ms
12,288 KB
testcase_14 AC 87 ms
11,904 KB
testcase_15 AC 86 ms
12,032 KB
testcase_16 AC 88 ms
12,032 KB
testcase_17 AC 85 ms
12,160 KB
testcase_18 AC 82 ms
12,032 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 92 ms
11,904 KB
testcase_21 AC 90 ms
12,032 KB
testcase_22 AC 85 ms
12,032 KB
testcase_23 AC 142 ms
12,288 KB
testcase_24 AC 140 ms
12,160 KB
testcase_25 AC 94 ms
12,032 KB
testcase_26 AC 88 ms
12,160 KB
testcase_27 AC 124 ms
11,904 KB
testcase_28 AC 84 ms
12,160 KB
testcase_29 AC 98 ms
12,160 KB
testcase_30 AC 89 ms
12,160 KB
testcase_31 AC 104 ms
12,160 KB
testcase_32 AC 99 ms
12,032 KB
testcase_33 AC 92 ms
11,904 KB
testcase_34 AC 128 ms
12,032 KB
testcase_35 AC 89 ms
12,032 KB
testcase_36 AC 91 ms
12,032 KB
testcase_37 AC 90 ms
11,904 KB
testcase_38 AC 84 ms
12,032 KB
testcase_39 AC 86 ms
11,904 KB
testcase_40 AC 87 ms
11,904 KB
testcase_41 AC 84 ms
12,160 KB
testcase_42 AC 85 ms
12,032 KB
testcase_43 AC 94 ms
11,904 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)

list = []
v.times do |i|
  list << [s[i], t[i], y[i], m[i]]
end
list.sort!{|a, b| a[0] <=> b[0]}

all_pats = {}
all_pats[1] = {c => 0}
list.each do |keiro|
  if all_pats[keiro[0]]
    all_pats[keiro[0]].each do |coin, time|
      nokori = coin - keiro[2]
      if nokori >= 0
        if all_pats[keiro[1]].nil?
          all_pats[keiro[1]] = {}
        end
        if all_pats[keiro[1]][nokori].nil? ||
            all_pats[keiro[1]][nokori] > (time + keiro[3])
          all_pats[keiro[1]][nokori] = time + keiro[3]
        end
      end
    end
  end
end

min_time = nil
if all_pats[n]
  all_pats[n].each do |coin, time|
    if min_time.nil? || min_time > time
      min_time = time
    end
  end
end
puts min_time || -1
0