結果

問題 No.1424 Ultrapalindrome
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-12 21:52:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 97,344 KB
最終ジャッジ日時 2024-10-14 12:14:21
合計ジャッジ時間 5,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,064 KB
testcase_01 AC 42 ms
55,736 KB
testcase_02 AC 42 ms
54,004 KB
testcase_03 AC 43 ms
54,940 KB
testcase_04 AC 42 ms
54,404 KB
testcase_05 AC 42 ms
54,568 KB
testcase_06 AC 41 ms
53,928 KB
testcase_07 AC 42 ms
54,492 KB
testcase_08 WA -
testcase_09 AC 203 ms
87,492 KB
testcase_10 AC 217 ms
87,304 KB
testcase_11 AC 170 ms
84,420 KB
testcase_12 AC 197 ms
87,076 KB
testcase_13 AC 108 ms
78,176 KB
testcase_14 AC 177 ms
85,292 KB
testcase_15 AC 45 ms
55,776 KB
testcase_16 AC 155 ms
82,732 KB
testcase_17 AC 169 ms
84,848 KB
testcase_18 AC 145 ms
81,532 KB
testcase_19 AC 185 ms
84,104 KB
testcase_20 AC 108 ms
77,896 KB
testcase_21 AC 164 ms
82,356 KB
testcase_22 AC 130 ms
80,228 KB
testcase_23 AC 87 ms
77,444 KB
testcase_24 AC 103 ms
77,956 KB
testcase_25 AC 100 ms
77,684 KB
testcase_26 AC 214 ms
85,356 KB
testcase_27 WA -
testcase_28 AC 155 ms
89,212 KB
testcase_29 AC 155 ms
89,316 KB
testcase_30 AC 169 ms
97,344 KB
testcase_31 AC 168 ms
96,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
e = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    e[a].append(b)
    e[b].append(a)

cand = []
for i in range(n):
    if len(e[i]) == 1:
        cand.append(i)

def search(ind):
    dis = [10**10]*n
    dis[cand[ind]] = 0

    q = deque([cand[ind]])
    while q:
        now = q.popleft()
        for nex in e[now]:
            if dis[nex] > dis[now]+1:
                dis[nex] = dis[now]+1
                q.append(nex)
    num = dis[cand[(ind+1)%len(cand)]]
    for i in cand:
        if i != cand[ind] and num != dis[i]:
            print("No")
            exit()
search(0)
search(1)
print("Yes")
0