목차

뉴스 전하기

ps
링크acmicpc.net/…
출처BOJ
문제 번호1135
문제명뉴스 전하기
레벨골드 1
분류

트리 DP

시간복잡도O(nlogn)
인풋사이즈50
사용한 언어Python
제출기록33928KB / 164ms
최고기록56ms
해결날짜2021/11/03

풀이

코드

"""Solution code for "BOJ 1135. 뉴스 전하기".

- Problem link: https://www.acmicpc.net/problem/1135
- Solution link: http://www.teferi.net/ps/problems/boj/1135

Tags: [DP] [DP on Tree]
"""

from teflib import ttree

ROOT = 0


def calc_dp(subtree_vals, _):
    subtree_vals.sort(reverse=True)
    return max((t1 + t2 for t1, t2 in enumerate(subtree_vals, 1)), default=0)


def main():
    N = int(input())
    parents = [int(x) for x in input().split()]
    tree = [[] for _ in range(N)]
    for u, par in enumerate(parents):
        if par != -1:
            tree[u].append(par)
            tree[par].append(u)

    print(ttree.dp_on_tree(tree, calc_dp, ROOT))


if __name__ == '__main__':
    main()