結果

問題 No.1424 Ultrapalindrome
ユーザー tobusakanatobusakana
提出日時 2022-10-14 21:31:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,456 KB
最終ジャッジ日時 2024-06-26 13:13:55
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 193 ms
85,888 KB
testcase_10 AC 203 ms
86,272 KB
testcase_11 AC 167 ms
82,944 KB
testcase_12 AC 190 ms
85,632 KB
testcase_13 AC 115 ms
78,080 KB
testcase_14 AC 168 ms
84,608 KB
testcase_15 AC 42 ms
52,992 KB
testcase_16 AC 157 ms
82,304 KB
testcase_17 AC 168 ms
84,352 KB
testcase_18 AC 142 ms
81,280 KB
testcase_19 AC 169 ms
83,584 KB
testcase_20 AC 110 ms
77,952 KB
testcase_21 AC 158 ms
82,176 KB
testcase_22 AC 134 ms
80,256 KB
testcase_23 AC 93 ms
77,440 KB
testcase_24 AC 104 ms
77,568 KB
testcase_25 AC 105 ms
78,080 KB
testcase_26 AC 178 ms
85,248 KB
testcase_27 WA -
testcase_28 AC 161 ms
89,088 KB
testcase_29 WA -
testcase_30 AC 172 ms
98,456 KB
testcase_31 AC 182 ms
97,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for i in range(N)]
indegree = [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)
    indegree[a - 1] += 1
    indegree[b - 1] += 1
    
# 次数1のある点から、他の全ての点への距離が同じであればOK
start = -1
for v in range(N):
    if indegree[v] == 1:
        start = v
        break

stack = []
dist = [-1] * N
stack.append([start, 0])
while stack:
    v, d = stack.pop()
    if dist[v] != -1:
        continue
    dist[v] = d
    for child in G[v]:
        if dist[child] != -1:
            continue
        stack.append([child, d + 1])
    
ds = set()
for v in range(N):
    if v == start:
        continue
    if indegree[v] == 1:
        ds.add(dist[v])
        
if len(ds) > 1:
    print("No")
else:
    print("Yes")
    
0