結果

問題 No.1424 Ultrapalindrome
ユーザー convexineqconvexineq
提出日時 2021-03-13 02:53:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 105,748 KB
最終ジャッジ日時 2024-10-14 16:31:21
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 157 ms
86,528 KB
testcase_10 AC 155 ms
86,616 KB
testcase_11 AC 131 ms
82,304 KB
testcase_12 AC 151 ms
86,528 KB
testcase_13 AC 96 ms
77,808 KB
testcase_14 AC 132 ms
83,200 KB
testcase_15 AC 40 ms
52,992 KB
testcase_16 AC 120 ms
81,536 KB
testcase_17 AC 134 ms
83,004 KB
testcase_18 AC 131 ms
84,052 KB
testcase_19 AC 154 ms
86,668 KB
testcase_20 AC 101 ms
77,720 KB
testcase_21 AC 135 ms
84,352 KB
testcase_22 AC 112 ms
80,008 KB
testcase_23 AC 85 ms
77,184 KB
testcase_24 AC 96 ms
77,440 KB
testcase_25 AC 97 ms
77,296 KB
testcase_26 AC 173 ms
91,520 KB
testcase_27 AC 170 ms
90,240 KB
testcase_28 AC 133 ms
85,100 KB
testcase_29 AC 149 ms
94,840 KB
testcase_30 AC 162 ms
97,852 KB
testcase_31 AC 163 ms
105,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

leaf = [v for v in range(n) if len(g[v]) == 1]
three = [v for v in range(n) if len(g[v]) >= 3]

if len(three) >= 2:
    print("No")
    exit()
if len(three) == 0:
    print("Yes")
    exit()
s = three[0]
dist = [-1]*n
dist[s] = 0
parent = [-1]*n
q = [s]
for v in q:
    for c in g[v]:
        if c == parent[v]:
            continue
        parent[c] = v
        dist[c] = dist[v] + 1
        q.append(c)

v = leaf[0]
print("Yes" if all(dist[v] == dist[vi] for vi in leaf) else "No")
0