結果

問題 No.92 逃走経路
ユーザー simansiman
提出日時 2015-04-02 21:10:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 483 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-06-08 01:25:43
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
25,216 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 142 ms
12,416 KB
testcase_06 AC 98 ms
12,544 KB
testcase_07 AC 98 ms
12,416 KB
testcase_08 AC 94 ms
12,288 KB
testcase_09 AC 476 ms
30,592 KB
testcase_10 AC 309 ms
27,776 KB
testcase_11 AC 337 ms
23,680 KB
testcase_12 AC 483 ms
27,520 KB
testcase_13 AC 187 ms
23,040 KB
testcase_14 AC 220 ms
24,576 KB
testcase_15 AC 297 ms
26,752 KB
testcase_16 AC 201 ms
23,552 KB
testcase_17 AC 204 ms
24,192 KB
testcase_18 AC 137 ms
19,584 KB
testcase_19 AC 110 ms
13,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    n, m, k = gets.chomp.split(' ').map(&:to_i)
    paths = Hash.new{|h,k| h[k] = Hash.new{|h,k| h[k] = []}}

    m.times do
      a, b, c = gets.chomp.split(' ').map(&:to_i)
      paths[a][c] << b
      paths[b][c] << a
    end

    d = gets.chomp.split(' ').map(&:to_i)

    current = [*(1..n)]

    d.each do |cost|
      temp = []

      current.each do |i|
        temp |= paths[i][cost]
      end

      current = temp.dup
    end

    puts current.size
    puts current.sort.join(' ')
  end
end

Yukicoder.new
0