結果

問題 No.1424 Ultrapalindrome
ユーザー gorugo30gorugo30
提出日時 2021-03-16 19:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,300 KB
最終ジャッジ日時 2024-11-08 09:25:24
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 46 ms
53,504 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 177 ms
85,248 KB
testcase_10 AC 181 ms
85,376 KB
testcase_11 AC 148 ms
82,176 KB
testcase_12 AC 175 ms
84,992 KB
testcase_13 AC 104 ms
77,824 KB
testcase_14 AC 151 ms
82,432 KB
testcase_15 AC 44 ms
52,992 KB
testcase_16 AC 136 ms
81,536 KB
testcase_17 AC 148 ms
82,304 KB
testcase_18 AC 175 ms
81,920 KB
testcase_19 AC 189 ms
84,608 KB
testcase_20 AC 118 ms
77,952 KB
testcase_21 AC 168 ms
82,688 KB
testcase_22 AC 148 ms
80,640 KB
testcase_23 AC 100 ms
77,824 KB
testcase_24 AC 115 ms
77,952 KB
testcase_25 AC 116 ms
78,080 KB
testcase_26 AC 215 ms
87,040 KB
testcase_27 AC 217 ms
89,984 KB
testcase_28 AC 149 ms
85,888 KB
testcase_29 AC 170 ms
89,344 KB
testcase_30 AC 176 ms
92,572 KB
testcase_31 AC 177 ms
93,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
deg = [0] * N
adj = [[] for i in range(N)]
for i in range(N - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    deg[a] += 1
    deg[b] += 1
    adj[a].append(b)
    adj[b].append(a)
aiueo = len(deg) - deg.count(2) - deg.count(1)
if aiueo > 1:
    print("No")
    exit()
if aiueo == 0:
    print("Yes")
    exit()
from collections import deque
r = deg.index(max(deg))
dep = [-1] * N
dep[r] = 0
qu = deque([r])
while len(qu):
    v = qu.popleft()
    for nv in adj[v]:
        if dep[nv] == -1:
            dep[nv] = dep[v] + 1
            qu.append(nv)
d = -1
for i in range(N):
    if deg[i] != 1:
        continue
    if d != -1 and d != dep[i]:
        print("No")
        exit()
    d = dep[i]
print("Yes")
0