結果

問題 No.1424 Ultrapalindrome
ユーザー MineMine
提出日時 2021-09-10 22:53:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 1,081 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,640 KB
最終ジャッジ日時 2024-06-12 02:41:49
合計ジャッジ時間 7,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 337 ms
25,692 KB
testcase_10 AC 343 ms
25,696 KB
testcase_11 AC 246 ms
21,852 KB
testcase_12 AC 319 ms
25,100 KB
testcase_13 AC 110 ms
14,564 KB
testcase_14 AC 270 ms
22,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 218 ms
21,208 KB
testcase_17 AC 255 ms
22,444 KB
testcase_18 AC 213 ms
18,868 KB
testcase_19 AC 317 ms
22,940 KB
testcase_20 AC 94 ms
13,784 KB
testcase_21 AC 263 ms
22,124 KB
testcase_22 AC 166 ms
16,956 KB
testcase_23 AC 58 ms
12,416 KB
testcase_24 AC 88 ms
13,816 KB
testcase_25 AC 86 ms
13,200 KB
testcase_26 AC 381 ms
24,732 KB
testcase_27 AC 452 ms
32,780 KB
testcase_28 AC 414 ms
32,392 KB
testcase_29 AC 434 ms
35,404 KB
testcase_30 AC 420 ms
34,520 KB
testcase_31 AC 436 ms
37,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque


def main():
    def BFS(s):
        dist = [-1]*n
        q = deque([])
        q.append(s)
        dist[s] = 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