結果

問題 No.416 旅行会社
ユーザー simansiman
提出日時 2022-02-18 02:28:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,685 ms / 4,000 ms
コード長 742 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-12-14 21:15:10
合計ジャッジ時間 18,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
47,872 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 94 ms
12,416 KB
testcase_08 AC 99 ms
12,544 KB
testcase_09 AC 161 ms
15,488 KB
testcase_10 AC 937 ms
47,744 KB
testcase_11 AC 906 ms
47,360 KB
testcase_12 AC 897 ms
47,360 KB
testcase_13 AC 837 ms
47,360 KB
testcase_14 AC 1,598 ms
61,568 KB
testcase_15 AC 1,636 ms
61,824 KB
testcase_16 AC 1,653 ms
62,336 KB
testcase_17 AC 1,685 ms
62,336 KB
testcase_18 AC 1,647 ms
61,696 KB
testcase_19 AC 1,069 ms
51,328 KB
testcase_20 AC 1,022 ms
51,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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] || Q + 1) + 1; t == Q + 1 ? -1 : t }
0