結果

問題 No.1424 Ultrapalindrome
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-13 09:31:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 98,080 KB
最終ジャッジ日時 2024-10-15 02:48:27
合計ジャッジ時間 4,577 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 39 ms
53,376 KB
testcase_06 AC 40 ms
53,376 KB
testcase_07 AC 37 ms
53,376 KB
testcase_08 AC 40 ms
53,632 KB
testcase_09 AC 152 ms
86,784 KB
testcase_10 AC 152 ms
86,528 KB
testcase_11 AC 121 ms
82,600 KB
testcase_12 AC 146 ms
86,296 KB
testcase_13 AC 90 ms
78,080 KB
testcase_14 AC 130 ms
83,200 KB
testcase_15 AC 41 ms
54,656 KB
testcase_16 AC 120 ms
82,136 KB
testcase_17 AC 131 ms
83,072 KB
testcase_18 AC 127 ms
81,792 KB
testcase_19 AC 154 ms
84,224 KB
testcase_20 AC 102 ms
77,976 KB
testcase_21 AC 134 ms
82,048 KB
testcase_22 AC 116 ms
80,392 KB
testcase_23 AC 83 ms
77,888 KB
testcase_24 AC 90 ms
78,116 KB
testcase_25 AC 92 ms
77,696 KB
testcase_26 AC 168 ms
86,016 KB
testcase_27 AC 171 ms
90,776 KB
testcase_28 AC 129 ms
87,600 KB
testcase_29 AC 140 ms
88,768 KB
testcase_30 AC 149 ms
96,848 KB
testcase_31 AC 156 ms
98,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

c = 0
cand = []
ind = 0
for i in range(1,n+1):
    if len(e[i]) == 1:
        cand.append(i)
    if len(e[i]) >= 3:
        c += 1
        ind = i
if c == 0:
    print("Yes")
    exit()
if c >= 2:
    print("No")
    exit()

dis = [10**10]*(n+1)
dis[ind] = 0
q = deque([ind])
while q:
    now = q.popleft()
    for nex in e[now]:
        if dis[nex] > dis[now]+1:
            dis[nex] = dis[now]+1
            q.append(nex)

d = dis[cand[0]]
for i in cand:
    if d != dis[i]:
        print("No")
        exit()
print("Yes")
0