結果

問題 No.1424 Ultrapalindrome
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-15 14:57:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-11-07 02:53:17
合計ジャッジ時間 6,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 235 ms
24,064 KB
testcase_10 AC 223 ms
24,064 KB
testcase_11 AC 160 ms
20,096 KB
testcase_12 AC 215 ms
23,168 KB
testcase_13 AC 78 ms
14,080 KB
testcase_14 AC 182 ms
21,120 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 144 ms
19,072 KB
testcase_17 AC 172 ms
20,736 KB
testcase_18 AC 153 ms
17,536 KB
testcase_19 AC 234 ms
21,120 KB
testcase_20 AC 75 ms
13,056 KB
testcase_21 AC 191 ms
20,352 KB
testcase_22 AC 125 ms
16,128 KB
testcase_23 AC 48 ms
11,904 KB
testcase_24 AC 70 ms
13,312 KB
testcase_25 AC 67 ms
12,544 KB
testcase_26 AC 276 ms
23,168 KB
testcase_27 AC 301 ms
28,160 KB
testcase_28 AC 233 ms
27,904 KB
testcase_29 AC 309 ms
31,872 KB
testcase_30 AC 281 ms
27,264 KB
testcase_31 AC 295 ms
30,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())
G = [[] for _ in range(N)]
deg = [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)
    deg[a] += 1
    deg[b] += 1

leaf = deg.count(1)
branch = deg.count(2)
if leaf + branch == N:
    print("Yes")
    exit()
if N - leaf - branch > 1:
    print("No")
    exit()

root = deg.index(max(deg))
dep = [-1] * N
q = [root]
dep[root] = 0
L = set()
while q:
    s = q.pop()
    if deg[s] == 1:
        L.add(dep[s])
        continue
    for t in G[s]:
        if dep[t] == -1:
            dep[t] = dep[s] + 1
            q.append(t)

if len(L) == 1:
    print("Yes")
else:
    print("No")
0