結果

問題 No.1424 Ultrapalindrome
ユーザー MineMine
提出日時 2021-09-10 22:44:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,080 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 100,276 KB
最終ジャッジ日時 2024-06-12 02:08:53
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 37 ms
54,144 KB
testcase_05 AC 35 ms
53,504 KB
testcase_06 AC 35 ms
53,504 KB
testcase_07 AC 36 ms
53,760 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 146 ms
89,132 KB
testcase_10 AC 162 ms
89,032 KB
testcase_11 AC 125 ms
85,760 KB
testcase_12 AC 147 ms
88,940 KB
testcase_13 AC 89 ms
79,720 KB
testcase_14 AC 125 ms
85,888 KB
testcase_15 AC 38 ms
54,784 KB
testcase_16 AC 112 ms
84,864 KB
testcase_17 AC 124 ms
85,888 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 78 ms
77,696 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 188 ms
94,268 KB
testcase_28 AC 140 ms
93,608 KB
testcase_29 WA -
testcase_30 AC 164 ms
100,276 KB
testcase_31 AC 167 ms
100,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque


def main():
    def BFS(s):
        dist = [-1]*n
        q = deque([])
        q.append(s)
        dist[0] = 0
        while q:
            now = q.popleft()
            for to in d[now]:
                if dist[to] == -1:
                    dist[to] = dist[now] + 1
                    q.append(to)
        return dist
    n = int(input())
    d = defaultdict(list)
    for i in range(n-1):
        a, b = map(int, input().split())
        a -= 1
        b -= 1
        d[a].append(b)
        d[b].append(a)

    ends = []
    center = -1
    for i in range(n):
        if len(d[i]) == 1:
            ends.append(i)
        elif len(d[i]) >= 3:
            if center == -1:
                center = i
            else:
                return False
    if center == -1:
        return True
    length = -1
    dist = BFS(center)
    for end in ends:
        if length == -1:
            length = dist[end]
        elif length != dist[end]:
            return False
    return True


if main():
    print("Yes")
else:
    print("No")
0