結果

問題 No.1424 Ultrapalindrome
ユーザー wolgnikwolgnik
提出日時 2021-03-12 22:17:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 99,388 KB
最終ジャッジ日時 2024-10-14 16:19:13
合計ジャッジ時間 4,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,396 KB
testcase_01 AC 38 ms
52,816 KB
testcase_02 AC 38 ms
53,060 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 39 ms
53,440 KB
testcase_05 AC 38 ms
52,476 KB
testcase_06 AC 38 ms
53,164 KB
testcase_07 AC 38 ms
53,140 KB
testcase_08 AC 38 ms
53,336 KB
testcase_09 AC 132 ms
86,244 KB
testcase_10 AC 131 ms
86,128 KB
testcase_11 AC 100 ms
81,412 KB
testcase_12 AC 126 ms
85,924 KB
testcase_13 AC 66 ms
75,248 KB
testcase_14 AC 105 ms
81,608 KB
testcase_15 AC 39 ms
52,932 KB
testcase_16 AC 95 ms
80,780 KB
testcase_17 AC 100 ms
81,504 KB
testcase_18 AC 111 ms
80,596 KB
testcase_19 AC 143 ms
84,284 KB
testcase_20 AC 82 ms
78,472 KB
testcase_21 AC 120 ms
81,316 KB
testcase_22 AC 103 ms
79,916 KB
testcase_23 AC 61 ms
70,896 KB
testcase_24 AC 82 ms
77,840 KB
testcase_25 AC 73 ms
74,872 KB
testcase_26 AC 160 ms
85,304 KB
testcase_27 AC 153 ms
89,328 KB
testcase_28 AC 93 ms
85,656 KB
testcase_29 AC 107 ms
87,740 KB
testcase_30 AC 129 ms
99,388 KB
testcase_31 AC 133 ms
99,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
e = [[] for _ in range(N + 1)]
inc = [0] * (N + 1)
for _ in range(N - 1):
  u, v = map(int, input().split())
  e[u].append(v)
  e[v].append(u)
  inc[u] += 1
  inc[v] += 1

if max(inc) <= 2:
  print("Yes")
  exit(0)

root = 1
for x in range(1, N + 1):
  if inc[root] < inc[x]: root = x

s = [root]
vis = [0] * (N + 1)
vis[root] = 1
depth = [0] * (N + 1)
while len(s):
  x = s.pop()
  for y in e[x]:
    if vis[y]: continue
    vis[y] = 1
    s.append(y)
    if inc[y] > 2:
      print("No")
      exit(0)
    depth[y] = depth[x] + 1

leaves = []
for x in range(1, N + 1):
  if inc[x] == 1: leaves.append(depth[x])

if len(set(leaves)) == 1: print("Yes")
else: print("No")
0