結果

問題 No.1424 Ultrapalindrome
ユーザー kohei2019kohei2019
提出日時 2022-05-19 01:17:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 100,668 KB
最終ジャッジ日時 2024-09-17 05:40:35
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,624 KB
testcase_01 AC 38 ms
55,472 KB
testcase_02 AC 39 ms
54,848 KB
testcase_03 AC 40 ms
54,416 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
54,540 KB
testcase_07 AC 40 ms
54,500 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 146 ms
83,152 KB
testcase_19 AC 186 ms
85,544 KB
testcase_20 AC 106 ms
78,380 KB
testcase_21 AC 148 ms
83,188 KB
testcase_22 AC 129 ms
81,228 KB
testcase_23 AC 84 ms
77,940 KB
testcase_24 AC 101 ms
78,232 KB
testcase_25 AC 98 ms
77,940 KB
testcase_26 AC 200 ms
88,104 KB
testcase_27 WA -
testcase_28 AC 133 ms
88,496 KB
testcase_29 AC 151 ms
91,124 KB
testcase_30 AC 163 ms
98,304 KB
testcase_31 AC 169 ms
100,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
lsg = [[] for i in range(N)]
lsj = [0]*(N)
for i in range(N-1):
    a,b = map(int, input().split())
    a -= 1
    b -= 1
    lsg[a].append(b)
    lsg[b].append(a)
    lsj[a] += 1
    lsj[b] += 1

n1 = 0
n2 = 0
n3 = 0
for i in range(N):
    if lsj[i] == 1:
        n1 += 1
    elif lsj[i] == 2:
        n2 += 1
    else:
        n3 += 1

if n1 == 2 and n2 == N-2: #直線
    print('Yes')
    exit()

if n3 >= 2: #分岐が複数×
    print('NO')
    exit()

root = 0
for i in range(N):
    if lsj[i] >= 3:
        root = i
        break

d = collections.deque([root])
used = [False]*(N)
lsc = [float('INF')]*(N)
lsc[root] = 0
while d:
    n = d.popleft()
    if used[n]:
        continue
    used[n] = True
    for j in lsg[n]:
        if used[j]:
            continue
        if lsc[j] > lsc[n] + 1:
            lsc[j] = lsc[n] + 1
            d.append(j)

ll = []
for i in range(N):
    if lsj[i] == 1:
        ll.append(lsc[i])

cnt = len(collections.Counter(ll).keys())
if cnt == 1:
    print('Yes')
else:
    print('No')
0