結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー maguroflymagurofly
提出日時 2021-12-15 02:08:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,237 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-23 19:50:16
合計ジャッジ時間 24,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 103 ms
12,928 KB
testcase_05 AC 143 ms
15,616 KB
testcase_06 AC 149 ms
15,872 KB
testcase_07 AC 123 ms
14,080 KB
testcase_08 AC 163 ms
15,616 KB
testcase_09 AC 153 ms
15,872 KB
testcase_10 AC 151 ms
15,872 KB
testcase_11 AC 143 ms
14,592 KB
testcase_12 AC 135 ms
14,464 KB
testcase_13 AC 96 ms
12,416 KB
testcase_14 AC 923 ms
45,312 KB
testcase_15 AC 843 ms
43,904 KB
testcase_16 AC 785 ms
42,240 KB
testcase_17 AC 584 ms
34,048 KB
testcase_18 AC 980 ms
48,000 KB
testcase_19 AC 1,177 ms
54,272 KB
testcase_20 AC 1,200 ms
54,272 KB
testcase_21 AC 1,187 ms
54,144 KB
testcase_22 AC 1,185 ms
54,272 KB
testcase_23 AC 1,178 ms
54,272 KB
testcase_24 AC 1,237 ms
54,144 KB
testcase_25 AC 1,191 ms
54,272 KB
testcase_26 AC 1,203 ms
54,016 KB
testcase_27 AC 1,184 ms
54,016 KB
testcase_28 AC 1,184 ms
54,272 KB
testcase_29 AC 798 ms
49,792 KB
testcase_30 AC 869 ms
49,792 KB
testcase_31 AC 824 ms
54,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
graph = Array.new(N) { [] }
sum = 0
(N - 1).times do
  a, b = gets.split.map(&:to_i)
  sum += 1
  graph[a - 1] << [b - 1, 1]
  graph[b - 1] << [a - 1, 1]
end

dfs = ->(start) {
  visited = Array.new(N, false)
  visited[start] = true
  dist = Array.new(N, nil)
  dist[start] = 0
  stack = [start]
  while (u = stack.pop)
    graph[u].each do |v, c|
      next if visited[v]
      visited[v] = true
      dist[v] = dist[u] + c
      stack << v
    end
  end
  dist
}

d1 = dfs[0]
max = d1.max
v = d1.index(max)
d2 = dfs[v]
diameter = d2.max

puts sum * 2 - diameter
0