結果

問題 No.1 道のショートカット
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-05-26 09:08:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 719 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-20 16:14:36
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 84 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 85 ms
12,160 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 94 ms
12,160 KB
testcase_09 AC 87 ms
12,032 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 85 ms
12,288 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 85 ms
12,032 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 85 ms
12,160 KB
testcase_20 AC 86 ms
12,032 KB
testcase_21 AC 84 ms
12,032 KB
testcase_22 AC 85 ms
12,032 KB
testcase_23 AC 125 ms
12,544 KB
testcase_24 AC 95 ms
12,416 KB
testcase_25 AC 87 ms
12,032 KB
testcase_26 AC 87 ms
12,288 KB
testcase_27 AC 100 ms
12,160 KB
testcase_28 AC 86 ms
12,288 KB
testcase_29 AC 93 ms
12,288 KB
testcase_30 AC 89 ms
12,160 KB
testcase_31 AC 95 ms
12,160 KB
testcase_32 AC 96 ms
12,032 KB
testcase_33 AC 92 ms
12,160 KB
testcase_34 AC 95 ms
12,416 KB
testcase_35 AC 92 ms
12,416 KB
testcase_36 AC 92 ms
12,160 KB
testcase_37 AC 92 ms
12,288 KB
testcase_38 AC 86 ms
12,160 KB
testcase_39 AC 86 ms
12,032 KB
testcase_40 AC 89 ms
12,032 KB
testcase_41 AC 87 ms
12,160 KB
testcase_42 AC 84 ms
12,160 KB
testcase_43 AC 85 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:33: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

# Here your code !
n, c, v = 3.times.map { gets.to_i }
s, t, y, m = 4.times.map { gets.chomp.split.map(&:to_i) }
from_to = v.times.map {|i|
    { s: s[i], t: t[i], y: y[i], m: m[i] }
}.group_by {|v|
    v[:s]
}
q = [{pos: 1, y: 0, m: 0}]
g = nil

until q.empty?
    q.sort! { |a, b| a[:m] <=> b[:m] }
    current = q.shift
    pos = current[:pos]
    if pos == n
        g = current
        break
    end
    
    if from_to[pos]
        from_to[pos].each do |to|
            cost = current[:y] + to[:y]
            minute = current[:m] + to[:m]
            if cost <= c 
                q.push({ pos: to[:t], y: cost, m: minute} )
            end
        end
    end
end

if g.nil?
    puts -1
else
    puts g[:m]
end
0