結果
問題 | No.92 逃走経路 |
ユーザー | fine |
提出日時 | 2016-03-26 01:44:19 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 727 bytes |
コンパイル時間 | 60 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-10-02 00:50:54 |
合計ジャッジ時間 | 2,843 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 90 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 86 ms
12,160 KB |
testcase_04 | AC | 87 ms
12,160 KB |
testcase_05 | AC | 100 ms
18,176 KB |
testcase_06 | AC | 103 ms
12,544 KB |
testcase_07 | AC | 104 ms
12,544 KB |
testcase_08 | AC | 92 ms
12,032 KB |
testcase_09 | AC | 123 ms
15,744 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
Main.rb:16: warning: assigned but unused variable - k Syntax OK
ソースコード
def sol c, d, list if d.empty? return c end x = d.shift ans = [] c.each{|s| idx = list[s][0].index(x) if idx ans.push(list[s][1][idx]) end } return sol(ans.uniq, d, list) end n,m,k = gets.split.map(&:to_i) fee = Hash.new([]) list = Array.new(n) n.times{|i| list[i] = Array.new(2) list[i][0] = [] list[i][1] = [] } m.times{ a,b,c = gets.split.map(&:to_i) fee[c] = fee[c] + [a - 1,b - 1] list[a - 1][0].push(c) list[a - 1][1].push(b - 1) list[b - 1][0].push(c) list[b - 1][1].push(a - 1) } d = gets.split.map(&:to_i) x = d.shift ans = sol(fee[x], d, list).map{|i|i + 1}.sort p ans.size puts ans.join(' ')