結果

問題 No.1424 Ultrapalindrome
ユーザー convexineqconvexineq
提出日時 2021-03-12 21:58:24
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 740 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 128,248 KB
最終ジャッジ日時 2024-10-14 16:14:50
合計ジャッジ時間 5,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,688 KB
testcase_01 AC 35 ms
53,432 KB
testcase_02 AC 36 ms
52,272 KB
testcase_03 AC 35 ms
52,348 KB
testcase_04 AC 36 ms
52,764 KB
testcase_05 AC 33 ms
52,768 KB
testcase_06 AC 36 ms
52,636 KB
testcase_07 AC 34 ms
53,548 KB
testcase_08 AC 34 ms
52,560 KB
testcase_09 AC 157 ms
92,160 KB
testcase_10 AC 157 ms
92,380 KB
testcase_11 AC 131 ms
86,556 KB
testcase_12 AC 155 ms
91,476 KB
testcase_13 AC 88 ms
78,528 KB
testcase_14 AC 133 ms
87,484 KB
testcase_15 AC 38 ms
53,628 KB
testcase_16 AC 117 ms
85,296 KB
testcase_17 AC 129 ms
86,680 KB
testcase_18 AC 167 ms
94,040 KB
testcase_19 AC 252 ms
103,248 KB
testcase_20 AC 109 ms
78,356 KB
testcase_21 AC 199 ms
102,952 KB
testcase_22 AC 159 ms
92,872 KB
testcase_23 AC 79 ms
77,064 KB
testcase_24 AC 103 ms
78,348 KB
testcase_25 AC 106 ms
78,184 KB
testcase_26 AC 296 ms
109,196 KB
testcase_27 WA -
testcase_28 AC 145 ms
102,552 KB
testcase_29 AC 143 ms
102,888 KB
testcase_30 AC 222 ms
128,248 KB
testcase_31 AC 152 ms
103,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)

leaf = [v for v in range(n) if len(g[v]) == 1]

def dfs(g,s):
    dist = [-1]*n
    dist[s] = 0
    parent = [-1]*n
    q = [s]
    for v in q:
        for c in g[v]:
            if c == parent[v]:
                continue
            parent[c] = v
            dist[c] = dist[v] + 1
            q.append(c)
    d = -1
    for v in leaf:
        if s == v: continue
        elif d == -1:
            d = dist[v]
        elif d != dist[v]:
            print("No")
            exit()
    #print(dist,d)

#print(leaf)

c = 0
for s in leaf:
    dfs(g,s)
    c += 1
    if c > 10: break
print("Yes")
0