結果

問題 No.1424 Ultrapalindrome
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-12 23:02:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,313 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 107,164 KB
最終ジャッジ日時 2024-10-14 13:36:58
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 43 ms
54,272 KB
testcase_05 WA -
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 WA -
testcase_09 AC 204 ms
92,052 KB
testcase_10 AC 195 ms
92,012 KB
testcase_11 AC 165 ms
89,468 KB
testcase_12 AC 189 ms
93,252 KB
testcase_13 AC 112 ms
79,744 KB
testcase_14 AC 164 ms
90,336 KB
testcase_15 AC 43 ms
54,528 KB
testcase_16 AC 142 ms
86,720 KB
testcase_17 AC 155 ms
89,892 KB
testcase_18 AC 131 ms
84,176 KB
testcase_19 AC 159 ms
89,152 KB
testcase_20 AC 100 ms
78,720 KB
testcase_21 AC 139 ms
86,224 KB
testcase_22 AC 120 ms
81,920 KB
testcase_23 AC 84 ms
78,208 KB
testcase_24 AC 96 ms
78,536 KB
testcase_25 AC 96 ms
78,336 KB
testcase_26 AC 187 ms
91,004 KB
testcase_27 WA -
testcase_28 AC 124 ms
95,880 KB
testcase_29 AC 118 ms
95,768 KB
testcase_30 AC 139 ms
107,164 KB
testcase_31 AC 137 ms
104,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

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

if n == 2:
    print('Yes')
    exit()

s = []
s.append(0)
parent = [-1]*n
order = []
while s:
    v = s.pop()
    order.append(v)
    for u in g[v]:
        if parent[v] == u:
            continue
        s.append(u)
        parent[u] = v
#print(order)
order.reverse()
C = [1]*n
for v in order:
    if parent[v] != -1:
        C[parent[v]] += C[v]
#print(C)
G = []
for v in order:
    for u in g[v]:
        if parent[v] == u:
            continue
        if C[u] > n//2:
            break
    else:
        if n-C[v] <= n//2:
            G.append(v)
#print(G)
L = []
for v in order:
    if len(g[v]) == 1:
        L.append(v)

#print(L)

if len(L) == 2:
    print('Yes')
    exit()

if len(G) == 2:
    print('No')
    exit()

s = G[0]
#print(s)
from collections import deque
q = deque([])
q.append(s)
dist = [-1]*n
dist[s] = 0
while q:
    v = q.popleft()
    for u in g[v]:
        if dist[u] == -1:
            dist[u] = dist[v]+1
            q.append(u)
D = set()
for l in L:
    D.add(dist[l])
#print(D)
if len(D) == 1:
    print('Yes')
else:
    print('No')
0