結果

問題 No.1424 Ultrapalindrome
ユーザー tobusakanatobusakana
提出日時 2022-10-14 21:34:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,087 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-06-26 13:17:11
合計ジャッジ時間 5,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 206 ms
85,888 KB
testcase_10 AC 206 ms
86,528 KB
testcase_11 AC 157 ms
84,224 KB
testcase_12 AC 192 ms
86,008 KB
testcase_13 AC 103 ms
78,440 KB
testcase_14 AC 166 ms
84,608 KB
testcase_15 AC 39 ms
53,632 KB
testcase_16 AC 144 ms
82,432 KB
testcase_17 AC 160 ms
83,968 KB
testcase_18 AC 138 ms
81,408 KB
testcase_19 AC 179 ms
84,736 KB
testcase_20 AC 99 ms
77,568 KB
testcase_21 AC 157 ms
82,688 KB
testcase_22 AC 122 ms
80,768 KB
testcase_23 AC 93 ms
78,076 KB
testcase_24 AC 99 ms
77,696 KB
testcase_25 AC 96 ms
77,480 KB
testcase_26 AC 204 ms
85,692 KB
testcase_27 WA -
testcase_28 AC 157 ms
89,880 KB
testcase_29 WA -
testcase_30 AC 189 ms
110,080 KB
testcase_31 AC 170 ms
97,764 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
# を二回やって成功すればOK
start = -1
start1 = -1
for v in range(N):
    if indegree[v] == 1 and start != -1:
        start1 = v
        break
    if indegree[v] == 1:
        start = v

def check(x):
    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])
            
    return len(ds) == 1

if check(start) and check(start1):
    print("Yes")
else:
    print("No")
0