結果

問題 No.277 根掘り葉掘り
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2017-03-12 10:40:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 626 ms / 3,000 ms
コード長 722 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-06-25 05:17:12
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 98 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 94 ms
12,288 KB
testcase_05 AC 92 ms
12,032 KB
testcase_06 AC 95 ms
12,288 KB
testcase_07 AC 96 ms
12,160 KB
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 511 ms
23,936 KB
testcase_10 AC 529 ms
33,280 KB
testcase_11 AC 549 ms
30,080 KB
testcase_12 AC 533 ms
29,696 KB
testcase_13 AC 556 ms
28,672 KB
testcase_14 AC 626 ms
32,512 KB
testcase_15 AC 558 ms
30,336 KB
testcase_16 AC 540 ms
30,464 KB
testcase_17 AC 544 ms
30,080 KB
testcase_18 AC 546 ms
29,824 KB
testcase_19 AC 544 ms
29,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

root_node = 1
leaf_nodes = edges.find_all { |_k, v| v.length == 1 }
  .map(&:first) - [root_node]
zero_nodes = [root_node] + leaf_nodes

node_lengths = Array.new(n + 1)
checked_nodes = Array.new(n + 1) { false }
queue = []

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

while (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
end
node_lengths.shift
puts node_lengths
0