結果

問題 No.92 逃走経路
ユーザー finefine
提出日時 2016-03-26 01:53:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 564 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-06-07 20:51:15
合計ジャッジ時間 6,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
14,080 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 533 ms
42,752 KB
testcase_06 AC 296 ms
12,544 KB
testcase_07 AC 294 ms
12,544 KB
testcase_08 AC 93 ms
12,416 KB
testcase_09 AC 148 ms
14,080 KB
testcase_10 AC 557 ms
33,152 KB
testcase_11 AC 528 ms
33,792 KB
testcase_12 AC 564 ms
33,152 KB
testcase_13 AC 123 ms
13,952 KB
testcase_14 AC 138 ms
14,208 KB
testcase_15 AC 178 ms
14,464 KB
testcase_16 AC 171 ms
13,824 KB
testcase_17 AC 224 ms
14,208 KB
testcase_18 AC 232 ms
13,568 KB
testcase_19 AC 224 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:17: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

def sol c, d, list
    if d.empty?
        return c
    end
    x = d.shift
    ans = []
    c.each{|s|
        list[s][0].each_with_index{|v,i|
            if v == x
                ans.push(list[s][1][i])
            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].uniq, d, list).map{|i|i + 1}.sort
p ans.size
puts ans.join(' ')
0