結果

問題 No.1424 Ultrapalindrome
ユーザー simansiman
提出日時 2021-12-19 14:05:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-09-15 14:30:53
合計ジャッジ時間 8,518 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 87 ms
12,288 KB
testcase_09 AC 297 ms
22,400 KB
testcase_10 AC 299 ms
22,528 KB
testcase_11 AC 238 ms
18,560 KB
testcase_12 AC 291 ms
22,144 KB
testcase_13 AC 141 ms
14,080 KB
testcase_14 AC 243 ms
18,688 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 216 ms
18,176 KB
testcase_17 AC 235 ms
18,560 KB
testcase_18 AC 240 ms
18,048 KB
testcase_19 AC 324 ms
19,584 KB
testcase_20 AC 140 ms
13,824 KB
testcase_21 AC 261 ms
17,792 KB
testcase_22 AC 197 ms
15,104 KB
testcase_23 AC 115 ms
13,184 KB
testcase_24 AC 139 ms
13,952 KB
testcase_25 AC 135 ms
13,312 KB
testcase_26 AC 385 ms
22,272 KB
testcase_27 AC 368 ms
24,320 KB
testcase_28 AC 356 ms
24,576 KB
testcase_29 AC 479 ms
24,704 KB
testcase_30 AC 481 ms
29,056 KB
testcase_31 AC 512 ms
29,568 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

cnt = E.map { |_, list| list.size }.count { |x| x >= 3 }
if cnt >= 2
  puts 'No'
  exit
elsif cnt == 0
  puts 'Yes'
  exit
end

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

def bfs(root, counter)
  queue = []
  queue << [root, 0]
  visited = Array.new(N + 1, false)

  until queue.empty?
    v, dist = queue.shift

    next if visited[v]
    visited[v] = true

    if dist > 0 && E[v].size == 1
      counter[dist] += 1
    end

    E[v].each do |u|
      queue << [u, dist + 1]
    end
  end
end

bfs(root, counter)

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