結果

問題 No.1424 Ultrapalindrome
ユーザー paruf4paruf4
提出日時 2021-03-13 14:03:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-10-15 05:55:11
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 364 ms
24,320 KB
testcase_10 AC 342 ms
24,448 KB
testcase_11 AC 258 ms
20,480 KB
testcase_12 AC 337 ms
23,680 KB
testcase_13 AC 109 ms
14,464 KB
testcase_14 AC 266 ms
21,376 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 219 ms
18,816 KB
testcase_17 AC 271 ms
20,480 KB
testcase_18 AC 217 ms
18,048 KB
testcase_19 AC 312 ms
20,608 KB
testcase_20 AC 95 ms
13,184 KB
testcase_21 AC 264 ms
18,560 KB
testcase_22 AC 170 ms
15,616 KB
testcase_23 AC 58 ms
12,288 KB
testcase_24 AC 88 ms
12,928 KB
testcase_25 AC 82 ms
12,800 KB
testcase_26 AC 383 ms
22,400 KB
testcase_27 AC 448 ms
27,648 KB
testcase_28 AC 410 ms
27,264 KB
testcase_29 AC 467 ms
27,008 KB
testcase_30 AC 455 ms
31,616 KB
testcase_31 AC 480 ms
35,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

l = []
for i in range(n):
    if len(G[i]) >= 3:
        l.append(i)

if len(l) >= 2:
    print("No")
elif len(l) == 0:
    print("Yes")
else:
    s = set()
    q = deque()
    q.append((l[0],-1,0))
    while q:
        cur ,par ,dist = q.popleft()
        isleaf = True
        for nx in G[cur]:
            if nx != par:
                isleaf = False
                q.append((nx,cur,dist+1))
        if isleaf:
            s.add(dist)
    if len(s) == 1:
        print("Yes")
    else:
        print("No")
0