結果

問題 No.1424 Ultrapalindrome
ユーザー ああいいああいい
提出日時 2022-05-18 10:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 114,016 KB
最終ジャッジ日時 2024-09-16 10:47:53
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,444 KB
testcase_01 AC 39 ms
53,448 KB
testcase_02 AC 39 ms
53,068 KB
testcase_03 AC 37 ms
52,460 KB
testcase_04 AC 38 ms
53,036 KB
testcase_05 AC 40 ms
52,532 KB
testcase_06 AC 39 ms
53,160 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 37 ms
52,804 KB
testcase_09 AC 165 ms
90,160 KB
testcase_10 AC 165 ms
90,176 KB
testcase_11 AC 133 ms
84,800 KB
testcase_12 AC 158 ms
89,512 KB
testcase_13 AC 95 ms
78,280 KB
testcase_14 AC 142 ms
85,588 KB
testcase_15 AC 40 ms
54,732 KB
testcase_16 AC 129 ms
83,636 KB
testcase_17 AC 136 ms
85,384 KB
testcase_18 AC 140 ms
82,832 KB
testcase_19 AC 170 ms
84,468 KB
testcase_20 AC 103 ms
77,732 KB
testcase_21 AC 143 ms
82,008 KB
testcase_22 AC 123 ms
80,244 KB
testcase_23 AC 86 ms
77,552 KB
testcase_24 AC 98 ms
78,208 KB
testcase_25 AC 98 ms
77,800 KB
testcase_26 AC 190 ms
86,308 KB
testcase_27 AC 210 ms
96,348 KB
testcase_28 AC 135 ms
85,952 KB
testcase_29 AC 147 ms
89,124 KB
testcase_30 AC 174 ms
106,244 KB
testcase_31 AC 178 ms
114,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
Gnum = [0] * N
for _ in range(N-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)
    Gnum[a] += 1
    Gnum[b] += 1

ha = 0
has = set()
for j in range(N):
    i = Gnum[j]
    if i == 1:
        ha += 1
        has.add(j)
import sys
if ha == 2:
    print('Yes')
    exit()
count = 0
center = -1
for j in range(N):
    i = Gnum[j]
    if 2 < i < ha:
        print('No')
        exit()
    if i == ha:
        count += 1
        center = j

if count != 1:
    print('No')
    exit()
dist = [0] * N
stack = [(center,-1)]
while stack:
    now,parent = stack.pop()
    for v in G[now]:
        if v == parent:continue
        dist[v] = dist[now] + 1
        stack.append((v,now))
s = set()
for v in has:
    s.add(dist[v])
if len(s) == 1:
    print('Yes')
else:
    print('No')
"""
print(s)
print(dist)
print(center)
"""
0