結果

問題 No.1424 Ultrapalindrome
ユーザー ああいいああいい
提出日時 2022-05-18 09:57:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 104,748 KB
最終ジャッジ日時 2024-09-16 10:44:20
合計ジャッジ時間 8,146 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
53,148 KB
testcase_02 AC 37 ms
52,380 KB
testcase_03 AC 35 ms
52,340 KB
testcase_04 AC 37 ms
52,392 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
52,892 KB
testcase_09 AC 157 ms
89,760 KB
testcase_10 AC 163 ms
90,168 KB
testcase_11 AC 129 ms
85,388 KB
testcase_12 AC 148 ms
89,432 KB
testcase_13 AC 86 ms
78,396 KB
testcase_14 AC 135 ms
85,940 KB
testcase_15 AC 40 ms
53,480 KB
testcase_16 AC 128 ms
83,920 KB
testcase_17 AC 122 ms
85,844 KB
testcase_18 AC 415 ms
83,212 KB
testcase_19 AC 153 ms
83,656 KB
testcase_20 AC 89 ms
77,600 KB
testcase_21 AC 122 ms
82,316 KB
testcase_22 AC 101 ms
79,316 KB
testcase_23 AC 129 ms
77,368 KB
testcase_24 AC 83 ms
77,548 KB
testcase_25 AC 87 ms
77,800 KB
testcase_26 AC 162 ms
86,944 KB
testcase_27 AC 199 ms
96,060 KB
testcase_28 AC 133 ms
86,088 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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(a)
    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')
0