結果

問題 No.1424 Ultrapalindrome
ユーザー rlangevinrlangevin
提出日時 2023-03-01 22:53:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,078 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 101,260 KB
最終ジャッジ日時 2024-09-16 19:59:36
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 42 ms
54,272 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 WA -
testcase_09 AC 148 ms
88,192 KB
testcase_10 AC 155 ms
88,448 KB
testcase_11 AC 129 ms
84,992 KB
testcase_12 AC 145 ms
87,936 KB
testcase_13 AC 90 ms
79,744 KB
testcase_14 AC 128 ms
86,372 KB
testcase_15 AC 42 ms
54,144 KB
testcase_16 AC 121 ms
83,840 KB
testcase_17 AC 123 ms
85,504 KB
testcase_18 AC 111 ms
81,024 KB
testcase_19 AC 140 ms
85,420 KB
testcase_20 AC 84 ms
78,508 KB
testcase_21 AC 117 ms
83,712 KB
testcase_22 AC 99 ms
80,384 KB
testcase_23 AC 65 ms
72,832 KB
testcase_24 AC 80 ms
78,208 KB
testcase_25 AC 80 ms
77,952 KB
testcase_26 AC 159 ms
87,360 KB
testcase_27 WA -
testcase_28 AC 115 ms
91,612 KB
testcase_29 AC 116 ms
91,392 KB
testcase_30 AC 133 ms
101,260 KB
testcase_31 AC 127 ms
101,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import deque


def bfs(G, s, N):
    Q = deque([])
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        Q.append(u)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)
            
    return dist


N = int(readline())
G = [[] for i in range(N)]
D = [0] * N
for i in range(N - 1):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)
    D[A] += 1
    D[B] += 1
    
one = []
for i in range(N):
    if D[i] == 1:
        one.append(i)
        
D1 = bfs(G, one[0], N)
S1 = set()
for a in one:
    if D1[a] == 0:
        continue
    S1.add(D1[a])
if len(S1) != 1:
    print("No")
    exit()
    
D1 = bfs(G, one[1], N)
S1 = set()
for a in one:
    if D1[a] == 0:
        continue
    S1.add(D1[a])
if len(S1) != 1:
    print("No")
    exit()
    
print("Yes")
0