結果

問題 No.1424 Ultrapalindrome
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 15:19:47
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 724 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 852,224 KB
最終ジャッジ日時 2024-06-11 08:17:56
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 46 ms
53,504 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 39 ms
53,760 KB
testcase_08 AC 39 ms
53,504 KB
testcase_09 AC 146 ms
85,504 KB
testcase_10 AC 150 ms
85,376 KB
testcase_11 AC 123 ms
82,048 KB
testcase_12 AC 141 ms
85,376 KB
testcase_13 AC 98 ms
78,080 KB
testcase_14 AC 127 ms
82,560 KB
testcase_15 AC 41 ms
54,528 KB
testcase_16 AC 116 ms
81,664 KB
testcase_17 AC 132 ms
82,304 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
g=[[] for _ in range(n)]
in_num=[0]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
cnt_3=0
for i in range(n):
    if len(g[i])>=3:
        cnt_3+=1
if cnt_3>=2:
    print('No')
elif cnt_3==0:
    print('Yes')
else:
    q=deque()
    for i in range(n):
        if len(g[i])==1:
            q.append((i,-1,0))
    D=set()
    while q:
        now,pre,d=q.popleft()
        for to in g[now]:
            if to==pre:
                continue
            if len(g[to])==1:
                D.add(d+1)
                continue
            q.append((to,now,d+1))
    if len(D)==1:
        print('Yes')
    else:
        print('No')
0