結果

問題 No.1424 Ultrapalindrome
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-12 22:42:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,102 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-10-14 13:16:36
合計ジャッジ時間 8,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,880 KB
testcase_01 AC 45 ms
55,256 KB
testcase_02 AC 43 ms
54,116 KB
testcase_03 AC 40 ms
52,520 KB
testcase_04 AC 42 ms
54,656 KB
testcase_05 WA -
testcase_06 AC 41 ms
54,496 KB
testcase_07 AC 42 ms
54,352 KB
testcase_08 WA -
testcase_09 AC 282 ms
97,596 KB
testcase_10 AC 288 ms
97,732 KB
testcase_11 AC 182 ms
90,488 KB
testcase_12 AC 228 ms
95,748 KB
testcase_13 AC 122 ms
81,588 KB
testcase_14 AC 233 ms
92,276 KB
testcase_15 AC 43 ms
54,976 KB
testcase_16 AC 150 ms
84,988 KB
testcase_17 AC 183 ms
91,180 KB
testcase_18 AC 206 ms
83,576 KB
testcase_19 AC 206 ms
90,396 KB
testcase_20 AC 105 ms
80,108 KB
testcase_21 AC 158 ms
84,736 KB
testcase_22 AC 134 ms
83,124 KB
testcase_23 AC 88 ms
73,100 KB
testcase_24 AC 102 ms
79,668 KB
testcase_25 AC 98 ms
79,376 KB
testcase_26 AC 233 ms
93,000 KB
testcase_27 WA -
testcase_28 AC 110 ms
97,108 KB
testcase_29 WA -
testcase_30 AC 1,005 ms
107,496 KB
testcase_31 AC 990 ms
109,184 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)]
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)
    g[a].append(b)
    g[b].append(a)

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

from collections import deque
q = deque([])
leaf = []
for v in range(n):
    if len(g[v]) == 1:
        q.append(v)
        leaf.append(v)

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

N = n
while N > 2:
    l = len(q)
    N -= l
    for i in range(l):
        v = q.popleft()
        for u in g[v]:
            g[u].remove(v)
            if len(g[u]) == 1:
                q.append(u)
#print(list(q))
if len(q) >= 2:
    print('No')
    exit()
s = q[0]
#print(s)
q = deque([])
q.append(s)
dist = [-1]*len(g)
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 leaf:
    D.add(dist[l])
if len(D) == 1:
    print('Yes')
else:
    print('No')
0