結果

問題 No.92 逃走経路
ユーザー tshigtshig
提出日時 2016-08-09 12:14:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,028 ms / 5,000 ms
コード長 615 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 45,952 KB
最終ジャッジ日時 2024-06-07 20:59:28
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
16,896 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 84 ms
12,416 KB
testcase_05 AC 676 ms
45,952 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 89 ms
12,672 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 159 ms
16,896 KB
testcase_10 AC 982 ms
34,560 KB
testcase_11 AC 982 ms
34,048 KB
testcase_12 AC 1,028 ms
45,184 KB
testcase_13 AC 117 ms
17,152 KB
testcase_14 AC 147 ms
16,640 KB
testcase_15 AC 164 ms
18,304 KB
testcase_16 AC 139 ms
16,384 KB
testcase_17 AC 143 ms
15,488 KB
testcase_18 AC 117 ms
14,976 KB
testcase_19 AC 101 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Calc0092
  def initialize(args)
    args = args.map { |l| l.chomp.split(/\s+/) }
    @n, @m, @k = args.shift.map(&:to_i)
    @roads = args.shift(@m).map { |l| l.map(&:to_i) }
    @ds = args.shift.map(&:to_i)
  end

  def run
    h = @roads.group_by { |r| r[2] }.map { |k, v|
      [k, v.flat_map { |w| [[w[0], w[1]], [w[1], w[0]]] }]
    }.to_h

    cands = h[@ds.shift].map(&:last).uniq
    @ds.each do |d|
      cands = h[d].select { |w| cands.include?(w.first) }.map(&:last).uniq
    end
    [cands.size, cands.sort.join(' ')].join("\n")
  end
end

puts Calc0092.new(STDIN.readlines).run if __FILE__ == $0
0