結果

問題 No.1424 Ultrapalindrome
ユーザー roarisroaris
提出日時 2021-03-12 21:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 100,036 KB
最終ジャッジ日時 2024-10-14 16:11:10
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,612 KB
testcase_01 AC 43 ms
55,220 KB
testcase_02 AC 43 ms
54,136 KB
testcase_03 AC 43 ms
54,672 KB
testcase_04 AC 44 ms
55,520 KB
testcase_05 AC 44 ms
54,380 KB
testcase_06 AC 42 ms
54,024 KB
testcase_07 AC 42 ms
55,704 KB
testcase_08 AC 42 ms
54,060 KB
testcase_09 AC 124 ms
85,328 KB
testcase_10 AC 129 ms
85,192 KB
testcase_11 AC 103 ms
80,788 KB
testcase_12 AC 125 ms
84,964 KB
testcase_13 AC 77 ms
78,636 KB
testcase_14 AC 114 ms
83,732 KB
testcase_15 AC 42 ms
54,276 KB
testcase_16 AC 92 ms
80,384 KB
testcase_17 AC 103 ms
80,672 KB
testcase_18 AC 108 ms
80,360 KB
testcase_19 AC 139 ms
83,812 KB
testcase_20 AC 84 ms
78,368 KB
testcase_21 AC 115 ms
81,016 KB
testcase_22 AC 103 ms
79,920 KB
testcase_23 AC 62 ms
71,752 KB
testcase_24 AC 81 ms
78,296 KB
testcase_25 AC 81 ms
78,148 KB
testcase_26 AC 156 ms
85,148 KB
testcase_27 AC 146 ms
87,888 KB
testcase_28 AC 96 ms
85,564 KB
testcase_29 AC 118 ms
89,372 KB
testcase_30 AC 130 ms
99,920 KB
testcase_31 AC 137 ms
100,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def bfs():
    dist = [-1]*N
    dist[l[0]] = 0
    q = deque([l[0]])
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if dist[nv]==-1:
                dist[nv] = dist[v]+1
                q.append(nv)
    
    return dist

N = int(input())
deg = [0]*N
G = [[] for _ in range(N)]

for _ in range(N-1):
    a, b = map(int, input().split())
    deg[a-1] += 1
    deg[b-1] += 1
    G[a-1].append(b-1)
    G[b-1].append(a-1)

if max(deg)<=2:
    print('Yes')
    exit()

l = []

for i in range(N):
    if deg[i]>=3:
        l.append(i)
    
if len(l)>=2:
    print('No')
    exit()

dist = bfs()
dl = []

for i in range(N):
    if deg[i]==1:
        dl.append(dist[i])

if dl==[dl[0]]*len(dl):
    print('Yes')
else:
    print('No')
0