結果

問題 No.416 旅行会社
ユーザー simansiman
提出日時 2022-02-18 02:27:24
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 731 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-06-29 07:55:59
合計ジャッジ時間 21,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
47,872 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 978 ms
47,488 KB
testcase_11 AC 971 ms
47,616 KB
testcase_12 AC 958 ms
47,872 KB
testcase_13 AC 917 ms
47,616 KB
testcase_14 AC 1,727 ms
61,824 KB
testcase_15 AC 1,755 ms
61,568 KB
testcase_16 AC 1,741 ms
62,336 KB
testcase_17 AC 1,760 ms
62,336 KB
testcase_18 AC 1,860 ms
61,568 KB
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M, Q = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = Hash.new(false) }
C = M.times.map { gets.split.map(&:to_i) }
D = Q.times.map { gets.split.map(&:to_i) }

C.each do |a, b|
  E[a][b] = E[b][a] = true
end

D.each do |a, b|
  E[a][b] = E[b][a] = false
end

V = Array.new(N + 1, nil)

def bfs(root, t)
  queue = []
  queue << root

  until queue.empty?
    v = queue.shift

    next if V[v]
    V[v] = t

    E[v].each do |u, s|
      next if not s

      queue << u
    end
  end
end

bfs(1, 0)

D.reverse_each.with_index(1) do |(a, b), t|
  E[a][b] = E[b][a] = true

  if V[a] && V[b].nil?
    bfs(b, t)
  end

  if V[b] && V[a].nil?
    bfs(a, t)
  end
end

puts (2..N).map { |x| t = Q - V[x] + 1; t == Q + 1 ? -1 : t }
0