結果

問題 No.1424 Ultrapalindrome
ユーザー simansiman
提出日時 2021-12-19 12:44:51
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-09-15 14:27:11
合計ジャッジ時間 9,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 345 ms
22,400 KB
testcase_10 AC 351 ms
22,528 KB
testcase_11 AC 264 ms
18,176 KB
testcase_12 AC 335 ms
22,272 KB
testcase_13 AC 152 ms
14,336 KB
testcase_14 AC 276 ms
18,432 KB
testcase_15 AC 90 ms
12,288 KB
testcase_16 AC 240 ms
17,664 KB
testcase_17 AC 270 ms
18,176 KB
testcase_18 AC 202 ms
16,256 KB
testcase_19 AC 269 ms
17,536 KB
testcase_20 AC 133 ms
13,696 KB
testcase_21 AC 238 ms
20,480 KB
testcase_22 AC 177 ms
14,976 KB
testcase_23 AC 110 ms
12,544 KB
testcase_24 AC 130 ms
14,720 KB
testcase_25 AC 126 ms
13,824 KB
testcase_26 AC 311 ms
22,528 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 384 ms
24,832 KB
testcase_31 AC 410 ms
25,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
E = Hash.new { |h, k| h[k] = [] }

(N - 1).times do
  a, b = gets.split.map(&:to_i)
  E[a] << b
  E[b] << a
end

root = (1..N).find { |v| E[v].size == 1 }
counter = Hash.new(0)

def dfs(v, dist, counter, parent = -1)
  if dist > 0 && E[v].size == 1
    counter[dist] += 1
  end

  E[v].each do |u|
    next if u == parent
    dfs(u, dist + 1, counter, v)
  end
end

dfs(root, 0, counter)

if counter.size >= 2
  puts 'No'
else
  puts 'Yes'
end
0