結果

問題 No.1424 Ultrapalindrome
ユーザー AEnAEn
提出日時 2022-11-30 23:27:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 103,652 KB
最終ジャッジ日時 2024-10-07 18:52:15
合計ジャッジ時間 5,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 39 ms
53,768 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 39 ms
54,144 KB
testcase_06 AC 39 ms
54,144 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 39 ms
53,632 KB
testcase_09 AC 158 ms
88,572 KB
testcase_10 AC 159 ms
88,552 KB
testcase_11 AC 132 ms
83,476 KB
testcase_12 AC 158 ms
88,220 KB
testcase_13 AC 99 ms
77,688 KB
testcase_14 AC 140 ms
85,632 KB
testcase_15 AC 42 ms
55,040 KB
testcase_16 AC 128 ms
82,696 KB
testcase_17 AC 137 ms
84,480 KB
testcase_18 AC 140 ms
82,668 KB
testcase_19 AC 168 ms
86,764 KB
testcase_20 AC 102 ms
77,680 KB
testcase_21 AC 140 ms
84,864 KB
testcase_22 AC 119 ms
81,536 KB
testcase_23 AC 83 ms
77,804 KB
testcase_24 AC 96 ms
77,708 KB
testcase_25 AC 94 ms
77,672 KB
testcase_26 AC 190 ms
90,112 KB
testcase_27 AC 198 ms
93,568 KB
testcase_28 AC 141 ms
93,408 KB
testcase_29 AC 149 ms
94,824 KB
testcase_30 AC 157 ms
102,808 KB
testcase_31 AC 161 ms
103,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
G = [list() for _ in range(N)]

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

s1, s2 = [], []
for i in range(N):
    if len(G[i])==1:
        s1.append(i)
    else:
        s2.append(i)

if len(s1)==2:
    exit(print('Yes'))
else:
    cnt = 0
    s3 = []
    for s in s2:
        if len(G[s])>=3:
            cnt += 1
            s3.append(s)
    if cnt>1:
        exit(print('No'))
    else:
        d = deque([s3[0]])
        dis = [-1]*N
        dis[s3[0]] = 0
        while d:
            v = d.popleft()
            for nex in G[v]:
                if dis[nex]==-1:
                    dis[nex]= dis[v]+1
                    d.append(nex)
        dd = []
        for a in s1:
            dd.append(dis[a])
        if len(set(dd))==1:
            print('Yes')
        else:
            print('No')
0