結果

問題 No.1424 Ultrapalindrome
ユーザー zkouzkou
提出日時 2021-03-13 12:58:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,108 KB
最終ジャッジ日時 2024-10-15 05:17:20
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 234 ms
90,624 KB
testcase_10 AC 235 ms
89,600 KB
testcase_11 AC 167 ms
85,236 KB
testcase_12 AC 198 ms
88,600 KB
testcase_13 AC 111 ms
78,720 KB
testcase_14 AC 189 ms
87,168 KB
testcase_15 AC 45 ms
59,520 KB
testcase_16 AC 159 ms
83,320 KB
testcase_17 AC 169 ms
86,016 KB
testcase_18 AC 143 ms
82,716 KB
testcase_19 AC 189 ms
85,752 KB
testcase_20 AC 104 ms
78,020 KB
testcase_21 AC 162 ms
83,696 KB
testcase_22 AC 131 ms
81,152 KB
testcase_23 AC 84 ms
77,568 KB
testcase_24 AC 101 ms
77,528 KB
testcase_25 AC 99 ms
77,884 KB
testcase_26 AC 222 ms
87,368 KB
testcase_27 WA -
testcase_28 AC 153 ms
90,752 KB
testcase_29 WA -
testcase_30 AC 187 ms
115,108 KB
testcase_31 AC 174 ms
112,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(N, adj, root):
    stack = [root]
    parent = [-1] * N
    parent[root] = root
    depth = [0] * N
    while stack:
        v = stack.pop()
        for nv in adj[v]:
            if parent[nv] == -1:
                parent[nv] = v
                depth[nv] = depth[v] + 1
                stack.append(nv)
    return parent, depth

def main():
    N = int(input())
    adj = [[] for _ in range(N)]
    for _ in range(N - 1):
        u, v = map(int, input().split())
        u -= 1; v -= 1
        adj[u].append(v)
        adj[v].append(u)

    _, depth_0 = dfs(N, adj, 0)
    root = max(range(N), key=lambda i: depth_0[i])
    parent, depth = dfs(N, adj, root)
    dist = max(depth)
    leaves = [v for v in range(N) if len(adj[v]) == 1]
    if dist % 2 == 1:
        if len(leaves) == 2:
            print("Yes")
        else:
            print("No")
    else:
        end = max(range(N), key=lambda i: depth[i])
        cent = end
        for _ in range(dist // 2):
            cent = parent[cent]
        _, dists = dfs(N, adj, cent)
        for l in leaves:
            if dists[l] != dist // 2:
                print("No")
                exit()
        print("Yes")    
    
main()
0