結果

問題 No.1424 Ultrapalindrome
ユーザー AEnAEn
提出日時 2022-11-30 23:15:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,144 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 99,520 KB
最終ジャッジ日時 2024-10-07 18:48:49
合計ジャッジ時間 5,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,120 KB
testcase_01 AC 41 ms
54,012 KB
testcase_02 AC 41 ms
55,068 KB
testcase_03 AC 40 ms
54,452 KB
testcase_04 AC 41 ms
55,152 KB
testcase_05 AC 39 ms
54,084 KB
testcase_06 AC 39 ms
54,340 KB
testcase_07 AC 38 ms
55,224 KB
testcase_08 WA -
testcase_09 AC 206 ms
89,396 KB
testcase_10 AC 201 ms
89,324 KB
testcase_11 AC 166 ms
85,616 KB
testcase_12 AC 181 ms
87,736 KB
testcase_13 AC 117 ms
78,832 KB
testcase_14 AC 157 ms
86,064 KB
testcase_15 AC 44 ms
55,108 KB
testcase_16 AC 141 ms
82,920 KB
testcase_17 AC 152 ms
85,276 KB
testcase_18 AC 143 ms
82,240 KB
testcase_19 AC 177 ms
85,020 KB
testcase_20 AC 101 ms
78,004 KB
testcase_21 AC 143 ms
83,116 KB
testcase_22 AC 125 ms
80,744 KB
testcase_23 AC 84 ms
77,636 KB
testcase_24 AC 99 ms
77,552 KB
testcase_25 AC 99 ms
77,892 KB
testcase_26 AC 198 ms
86,980 KB
testcase_27 WA -
testcase_28 AC 131 ms
87,704 KB
testcase_29 WA -
testcase_30 AC 161 ms
98,084 KB
testcase_31 AC 172 ms
99,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, 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)

s = []
for i in range(N):
    if len(G[i])==1:
        s.append(i)
if len(s)==2:
    print('Yes')
else:
    dis = [-1]*N
    pre = [-1]*N
    d = deque()
    d.append(s[0])
    dis[s[0]] = 0
    while d:
        v = d.popleft()
        for nex in G[v]:
            if dis[nex]==-1:
                dis[nex]=dis[v]+1
                pre[nex] = v
                d.append(nex)
    if dis[s[1]]%2==1:
        exit(print('No'))
    else:
        dd = dis[s[1]]//2
        nn = dis[s[1]]
        v = s[1]
        while nn>dd:
            v = pre[v]
            nn = dis[v]
        d.append(v)
        dis2 = [-1]*N
        dis2[v] = 0
        while d:
            ver = d.popleft()
            for nex in G[ver]:
                if dis2[nex]==-1:
                    dis2[nex]=dis2[ver]+1
                    d.append(nex)
        for ss in s:
            if dis2[ss]!=nn:
                print('No')
                exit()
        print('Yes')
0