結果

問題 No.1424 Ultrapalindrome
ユーザー 小野寺健小野寺健
提出日時 2021-05-20 16:36:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,116 KB
最終ジャッジ日時 2024-10-10 07:17:13
合計ジャッジ時間 8,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 383 ms
28,380 KB
testcase_10 AC 389 ms
28,332 KB
testcase_11 AC 281 ms
23,900 KB
testcase_12 AC 363 ms
27,528 KB
testcase_13 AC 125 ms
15,544 KB
testcase_14 AC 303 ms
25,052 KB
testcase_15 AC 30 ms
11,008 KB
testcase_16 AC 245 ms
22,788 KB
testcase_17 AC 287 ms
24,480 KB
testcase_18 AC 291 ms
20,612 KB
testcase_19 AC 417 ms
25,024 KB
testcase_20 AC 116 ms
14,288 KB
testcase_21 AC 366 ms
23,784 KB
testcase_22 AC 223 ms
17,976 KB
testcase_23 AC 72 ms
13,056 KB
testcase_24 AC 106 ms
14,316 KB
testcase_25 AC 99 ms
13,832 KB
testcase_26 AC 492 ms
27,248 KB
testcase_27 AC 490 ms
35,172 KB
testcase_28 AC 485 ms
35,076 KB
testcase_29 AC 547 ms
38,684 KB
testcase_30 AC 655 ms
40,988 KB
testcase_31 AC 687 ms
44,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import defaultdict

def dijkstra(s):
    global N, P, Leaf
    D = [float('inf')] * N
    D[s] = 0
    q = [(0, s)]
    heapq.heapify(q)
    while len(q) > 0:
        cost, c = heapq.heappop(q)
        if cost > D[c]:
            continue
        for p in Edge[c]:
            if D[p] > D[c] + 1:
                D[p] = D[c] + 1
                heapq.heappush(q, (D[p], p))
    
    res = -1
    for e in Leaf:
        if res < 0:
            res = D[e]
        elif res != D[e]:
            return -1
    return res

N = int(input())

Edge = defaultdict(list)

for _ in range(N-1):
    v, u = map(int, input().split())
    Edge[v-1].append(u-1)
    Edge[u-1].append(v-1)
    
Leaf = []
Start = -1
NG = False
for k, v in Edge.items():
    if len(v) == 1:
        Leaf.append(k)
    elif len(v) >= 3:
        if Start < 0:
            Start = k
        else:
            NG = True
            break

if NG:
    print('No')
elif Start < 0:
    print('Yes')
else:
    print('Yes' if dijkstra(Start) >= 0 else 'No')
0