結果

問題 No.1424 Ultrapalindrome
ユーザー ygd.ygd.
提出日時 2021-03-12 21:49:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 870 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 91,472 KB
最終ジャッジ日時 2024-10-14 12:10:00
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 168 ms
84,624 KB
testcase_10 AC 234 ms
85,648 KB
testcase_11 AC 182 ms
82,944 KB
testcase_12 AC 162 ms
84,612 KB
testcase_13 AC 89 ms
77,756 KB
testcase_14 AC 200 ms
83,484 KB
testcase_15 AC 41 ms
53,248 KB
testcase_16 AC 124 ms
80,996 KB
testcase_17 AC 135 ms
81,544 KB
testcase_18 AC 146 ms
81,100 KB
testcase_19 AC 199 ms
83,292 KB
testcase_20 AC 115 ms
78,208 KB
testcase_21 RE -
testcase_22 AC 152 ms
80,112 KB
testcase_23 AC 76 ms
76,800 KB
testcase_24 AC 112 ms
78,592 KB
testcase_25 AC 106 ms
78,152 KB
testcase_26 AC 210 ms
84,196 KB
testcase_27 AC 257 ms
89,120 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 153 ms
90,380 KB
testcase_31 AC 134 ms
88,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a,b = map(int,input().split())
    a-=1;b-=1 #0-index
    G[a].append(b); G[b].append(a)

L = []
def dfs1(v,par=-1): #jは次数
    L.append(v)
    for u in G[v]:
        if u == par: continue
        dfs1(u,v)
        break
        
for i in range(N):
    if len(G[i]) == 1:
        dfs1(i)
        break
#print(L)

if len(L) == N: print("Yes"); exit() #一直線

dic = {}
def dfs2(v,par,j):
    if j in dic:
        dic[j] += 1
    else:
        dic[j] = 1
    for u in G[v]:
        if u == par: continue
        dfs2(u,v,j+1)
    
if len(L)%2 != 0:
    NL = len(L)
    root = L[NL//2]
    dfs2(root,-1,0)
    idx = 1
    while idx in dic:
        if dic[idx] == dic[1]:
            idx += 1
            continue
        else:
            print("No");exit()
    print("Yes")
else:
    print("No")
0