結果

問題 No.1 道のショートカット
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2014-12-07 17:36:30
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 887 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-08 03:37:48
合計ジャッジ時間 9,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 72 ms
12,288 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 70 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 75 ms
12,288 KB
testcase_06 AC 72 ms
12,288 KB
testcase_07 AC 71 ms
12,288 KB
testcase_08 AC 723 ms
12,416 KB
testcase_09 AC 114 ms
12,416 KB
testcase_10 AC 1,270 ms
12,416 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Keiro
  def initialize(v, s, t, y, m)
    @num = v
    @s_ms = s
    @e_ms = t
    @costs = y
    @times = m
  end

  def min_time(s_machi, e_machi, coin)
    list = []
    @num.times do |i|
      if s_machi == @s_ms[i]
        nokori = coin - @costs[i]
        if nokori >= 0
          if e_machi == @e_ms[i]
            list << @times[i]
          else
            kt = min_time(@e_ms[i], e_machi, nokori)
            if kt
              list << kt + @times[i]
            end
          end
        end
      end
    end
    if list.empty?
      return nil
    else
      return list.min
    end
  end
end

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)

keiro = Keiro.new(v, s, t, y, m)
mt = keiro.min_time(1, n, c) || -1
puts mt
0