結果

問題 No.1424 Ultrapalindrome
ユーザー H20H20
提出日時 2021-03-12 22:39:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,085 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 101,536 KB
最終ジャッジ日時 2024-10-14 13:12:25
合計ジャッジ時間 6,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,796 KB
testcase_01 AC 42 ms
53,988 KB
testcase_02 AC 43 ms
54,052 KB
testcase_03 AC 42 ms
54,076 KB
testcase_04 AC 42 ms
55,228 KB
testcase_05 AC 42 ms
53,796 KB
testcase_06 AC 43 ms
55,472 KB
testcase_07 AC 42 ms
54,008 KB
testcase_08 WA -
testcase_09 AC 270 ms
88,596 KB
testcase_10 AC 277 ms
88,732 KB
testcase_11 AC 217 ms
84,576 KB
testcase_12 AC 256 ms
88,524 KB
testcase_13 AC 139 ms
79,768 KB
testcase_14 AC 237 ms
85,716 KB
testcase_15 AC 47 ms
54,980 KB
testcase_16 AC 200 ms
83,908 KB
testcase_17 AC 228 ms
85,208 KB
testcase_18 AC 177 ms
82,076 KB
testcase_19 AC 230 ms
84,620 KB
testcase_20 AC 121 ms
77,744 KB
testcase_21 AC 192 ms
82,900 KB
testcase_22 AC 154 ms
80,828 KB
testcase_23 AC 99 ms
77,444 KB
testcase_24 AC 111 ms
77,908 KB
testcase_25 AC 114 ms
77,700 KB
testcase_26 AC 251 ms
85,624 KB
testcase_27 WA -
testcase_28 AC 166 ms
89,120 KB
testcase_29 AC 168 ms
89,092 KB
testcase_30 AC 187 ms
97,448 KB
testcase_31 AC 198 ms
101,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
L = []
for i in range(N):
    L.append([])
for i in range(N-1):
    a,b = map(int, input().split())
    L[a-1].append(b-1)
    L[b-1].append(a-1)
CHECK = []
for i in range(N):
    if len(L[i])==1:
        CHECK.append(i)
root = CHECK[0]

q = deque()
c = deque()

STEP = [-1]*N
STEP[root]=0
q.append(root)
c.append(0)

while len(q) !=0:
    i = q.popleft()
    cnt = c.popleft()
    for l in L[i]:
        if STEP[l]==-1:
            STEP[l]=cnt+1
            q.append(l)
            c.append(cnt+1)

ans = True
for i in range(len(CHECK)):
    ans = ans and (STEP[CHECK[i]]==0 or STEP[CHECK[i]]==STEP[CHECK[1]]) 

same = STEP[CHECK[1]]

root = CHECK[1]
STEP = [-1]*N
STEP[root]=0
q.append(root)
c.append(0)

while len(q) !=0:
    i = q.popleft()
    cnt = c.popleft()
    for l in L[i]:
        if STEP[l]==-1:
            STEP[l]=cnt+1
            q.append(l)
            c.append(cnt+1)

for i in range(len(CHECK)):
    ans = ans and (STEP[CHECK[i]]==0 or STEP[CHECK[i]]==STEP[CHECK[0]]) 

if ans:
    print('Yes')
else:
    print('No')
0