結果

問題 No.277 根掘り葉掘り
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2017-03-12 12:02:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 459 ms / 3,000 ms
コード長 702 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-06-25 05:18:27
合計ジャッジ時間 7,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 92 ms
12,032 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 87 ms
12,032 KB
testcase_09 AC 435 ms
27,648 KB
testcase_10 AC 429 ms
31,872 KB
testcase_11 AC 453 ms
29,184 KB
testcase_12 AC 445 ms
29,056 KB
testcase_13 AC 459 ms
30,848 KB
testcase_14 AC 455 ms
30,592 KB
testcase_15 AC 447 ms
30,336 KB
testcase_16 AC 451 ms
30,080 KB
testcase_17 AC 449 ms
30,336 KB
testcase_18 AC 456 ms
29,824 KB
testcase_19 AC 442 ms
30,208 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 = []

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]
    queue << t
    checked_nodes[t] = true
    node_lengths[t] = next_root_length
  end
  break if queue.empty?
end

node_lengths.shift
puts node_lengths
0