結果

問題 No.1424 Ultrapalindrome
ユーザー c-yanc-yan
提出日時 2021-03-13 19:24:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 815 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-10-15 09:40:28
合計ジャッジ時間 8,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 403 ms
24,192 KB
testcase_10 AC 394 ms
24,448 KB
testcase_11 AC 283 ms
20,224 KB
testcase_12 AC 373 ms
23,552 KB
testcase_13 AC 122 ms
14,208 KB
testcase_14 AC 318 ms
21,120 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 249 ms
18,944 KB
testcase_17 AC 291 ms
20,736 KB
testcase_18 AC 243 ms
17,792 KB
testcase_19 AC 370 ms
21,248 KB
testcase_20 AC 107 ms
13,184 KB
testcase_21 AC 302 ms
20,224 KB
testcase_22 AC 194 ms
16,000 KB
testcase_23 AC 65 ms
11,776 KB
testcase_24 AC 102 ms
13,184 KB
testcase_25 AC 95 ms
12,800 KB
testcase_26 AC 433 ms
23,304 KB
testcase_27 AC 510 ms
28,416 KB
testcase_28 AC 432 ms
27,904 KB
testcase_29 WA -
testcase_30 AC 501 ms
27,264 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

links = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(lambda x: int(x) - 1, input().split())
    links[a].append(b)
    links[b].append(a)

a = sorted((len(l) for l in links), reverse=True)
if a[0] == 2:
    print('Yes')
    exit()
elif a[1] >= 3:
    print('No')
    exit()

for i in range(N):
    if len(links[i]) < 3:
        continue
    break

root = i
d = [-1] * N
d[root] = 0
q = [root]
while q:
    i = q.pop()
    for j in links[i]:
        if d[j] != -1:
            continue
        d[j] = d[i] + 1
        q.append(j)

for i in range(root + 1, N):
    if len(links[i]) != 1:
        continue
    a = d[i]
    break

for i in range(i + 1, N):
    if len(links[i]) != 1:
        continue
    if d[i] == a:
        continue
    print('No')
    break
else:
    print('Yes')
0