結果

問題 No.806 木を道に
ユーザー toyuzukotoyuzuko
提出日時 2020-05-08 22:11:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-07-04 00:47:52
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 92 ms
17,792 KB
testcase_11 AC 82 ms
17,152 KB
testcase_12 AC 324 ms
40,448 KB
testcase_13 AC 226 ms
31,616 KB
testcase_14 AC 299 ms
38,400 KB
testcase_15 AC 312 ms
40,704 KB
testcase_16 AC 118 ms
20,864 KB
testcase_17 AC 258 ms
36,096 KB
testcase_18 AC 48 ms
13,312 KB
testcase_19 AC 91 ms
18,176 KB
testcase_20 AC 263 ms
36,224 KB
testcase_21 AC 151 ms
24,576 KB
testcase_22 AC 374 ms
45,312 KB
testcase_23 AC 366 ms
44,928 KB
testcase_24 AC 165 ms
29,184 KB
testcase_25 AC 231 ms
38,912 KB
testcase_26 AC 104 ms
20,608 KB
testcase_27 AC 278 ms
43,764 KB
testcase_28 AC 34 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Tree():
    def __init__(self, n, edge):
        self.n = n
        self.tree = [[] for _ in range(n)]
        for e in edge:
            self.tree[e[0] - 1].append(e[1] - 1)
            self.tree[e[1] - 1].append(e[0] - 1)

    def setroot(self, root):
        self.root = root
        self.parent = [None for _ in range(self.n)]
        self.parent[root] = -1
        self.depth = [None for _ in range(self.n)]
        self.depth[root] = 0
        self.order = []
        self.order.append(root)
        stack = [root]
        while stack:
            node = stack.pop()
            for adj in self.tree[node]:
                if self.parent[adj] is None:
                    self.parent[adj] = node
                    self.depth[adj] = self.depth[node] + 1
                    self.order.append(adj)
                    stack.append(adj)

import sys
input = sys.stdin.readline

N = int(input())
E = [tuple(map(int, input().split())) for _ in range(N - 1)]

tree = Tree(N, E)
tree.setroot(0)

res = 0

for node in range(N):
    if len(tree.tree[node]) > 2:
        res += len(tree.tree[node]) - 2

print(res)
0