結果

問題 No.1424 Ultrapalindrome
ユーザー paruf4paruf4
提出日時 2021-03-13 14:03:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-10-15 05:55:11
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
G = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

l = []
for i in range(n):
    if len(G[i]) >= 3:
        l.append(i)

if len(l) >= 2:
    print("No")
elif len(l) == 0:
    print("Yes")
else:
    s = set()
    q = deque()
    q.append((l[0],-1,0))
    while q:
        cur ,par ,dist = q.popleft()
        isleaf = True
        for nx in G[cur]:
            if nx != par:
                isleaf = False
                q.append((nx,cur,dist+1))
        if isleaf:
            s.add(dist)
    if len(s) == 1:
        print("Yes")
    else:
        print("No")
0