結果

問題 No.763 Noelちゃんと木遊び
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-02-02 15:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 189,184 KB
最終ジャッジ日時 2024-07-02 04:25:17
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 378 ms
189,184 KB
testcase_01 AC 177 ms
82,176 KB
testcase_02 AC 267 ms
88,448 KB
testcase_03 AC 217 ms
84,736 KB
testcase_04 AC 187 ms
83,328 KB
testcase_05 AC 214 ms
84,608 KB
testcase_06 AC 301 ms
89,472 KB
testcase_07 AC 293 ms
89,344 KB
testcase_08 AC 223 ms
85,120 KB
testcase_09 AC 191 ms
83,712 KB
testcase_10 AC 149 ms
80,384 KB
testcase_11 AC 306 ms
89,728 KB
testcase_12 AC 282 ms
89,344 KB
testcase_13 AC 284 ms
89,216 KB
testcase_14 AC 268 ms
87,552 KB
testcase_15 AC 215 ms
84,992 KB
testcase_16 AC 137 ms
79,744 KB
testcase_17 AC 225 ms
84,736 KB
testcase_18 AC 303 ms
90,240 KB
testcase_19 AC 299 ms
89,856 KB
testcase_20 AC 284 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from typing import List

sys.setrecursionlimit(int(1e9))
input = lambda: sys.stdin.readline().rstrip("\r\n")


if __name__ == "__main__":
    n = int(input())
    adjList = [[] for _ in range(n)]
    for _ in range(n - 1):
        u, v = map(int, input().split())
        u, v = u - 1, v - 1
        adjList[u].append(v)
        adjList[v].append(u)

    def dfs(cur: int, pre: int) -> List[int]:
        res = [1, 0]  # 不删除/删除当前节点后的最大连通分量数
        for next in adjList[cur]:
            if next == pre:
                continue
            nextRes = dfs(next, cur)
            res[0] += max(nextRes[0] - 1, nextRes[1])
            res[1] += max(nextRes[0], nextRes[1])
        return res

    res = dfs(0, -1)
    print(max(res))
0