結果

問題 No.277 根掘り葉掘り
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2017-03-12 12:03:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 443 ms / 3,000 ms
コード長 794 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-06-30 00:20:16
合計ジャッジ時間 7,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,416 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 AC 85 ms
12,416 KB
testcase_05 AC 85 ms
12,288 KB
testcase_06 AC 86 ms
12,416 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 85 ms
12,160 KB
testcase_09 AC 422 ms
27,520 KB
testcase_10 AC 423 ms
32,000 KB
testcase_11 AC 412 ms
29,696 KB
testcase_12 AC 421 ms
29,568 KB
testcase_13 AC 435 ms
31,104 KB
testcase_14 AC 435 ms
31,232 KB
testcase_15 AC 435 ms
30,720 KB
testcase_16 AC 438 ms
30,720 KB
testcase_17 AC 443 ms
30,336 KB
testcase_18 AC 440 ms
30,720 KB
testcase_19 AC 436 ms
30,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true
n = gets.to_i
edges = Array.new(n + 1) { [] }
(n - 1).times do
  x, y = gets.split.map(&:to_i)
  edges[x] << y
  edges[y] << x
end

zero_nodes = [1] + edges.each_with_index.drop(2)
  .find_all { |v, _i| v.length == 1 }.map(&:last)

node_lengths = [nil] * (n + 1)
checked_nodes = [false] * (n + 1)

queue = []
next_queue = []

zero_nodes.each do |z|
  queue << z
  checked_nodes[z] = true
  node_lengths[z] = 0
end

loop do
  i = queue.shift
  next_root_length = node_lengths[i] + 1
  edges[i].each do |t|
    next if checked_nodes[t]
    next_queue << t
    checked_nodes[t] = true
    node_lengths[t] = next_root_length
  end
  next unless queue.empty?
  break if next_queue.empty?
  queue = next_queue
  next_queue = []
end

node_lengths.shift
puts node_lengths
0