結果

問題 No.1424 Ultrapalindrome
ユーザー tobusakanatobusakana
提出日時 2022-10-14 21:36:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,193 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 108,728 KB
最終ジャッジ日時 2024-06-26 13:20:11
合計ジャッジ時間 5,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 44 ms
52,224 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 WA -
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 181 ms
85,628 KB
testcase_10 AC 183 ms
85,264 KB
testcase_11 AC 141 ms
82,304 KB
testcase_12 AC 172 ms
85,376 KB
testcase_13 AC 95 ms
77,948 KB
testcase_14 AC 149 ms
82,176 KB
testcase_15 AC 43 ms
53,120 KB
testcase_16 AC 135 ms
81,708 KB
testcase_17 AC 148 ms
82,328 KB
testcase_18 AC 154 ms
81,536 KB
testcase_19 AC 213 ms
84,732 KB
testcase_20 AC 107 ms
77,696 KB
testcase_21 AC 184 ms
82,916 KB
testcase_22 AC 141 ms
80,344 KB
testcase_23 AC 92 ms
77,696 KB
testcase_24 AC 114 ms
77,696 KB
testcase_25 AC 104 ms
77,644 KB
testcase_26 AC 235 ms
85,844 KB
testcase_27 AC 212 ms
89,984 KB
testcase_28 AC 161 ms
89,672 KB
testcase_29 WA -
testcase_30 AC 189 ms
108,728 KB
testcase_31 AC 174 ms
97,812 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
    
more_indeg = 0
for v in range(N):
    if indegree[v] > 2:
        more_indeg += 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 more_indeg < 2 and check(start) and check(start1):
    print("Yes")
else:
    print("No")
0