CF442D.Adam and Tree

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

When Adam gets a rooted tree (connected non-directed graph without cycles), he immediately starts coloring it. More formally, he assigns a color to each edge of the tree so that it meets the following two conditions:

  • There is no vertex that has more than two incident edges painted the same color.
  • For any two vertexes that have incident edges painted the same color (say, cc ), the path between them consists of the edges of the color cc .

Not all tree paintings are equally good for Adam. Let's consider the path from some vertex to the root. Let's call the number of distinct colors on this path the cost of the vertex. The cost of the tree's coloring will be the maximum cost among all the vertexes. Help Adam determine the minimum possible cost of painting the tree.

Initially, Adam's tree consists of a single vertex that has number one and is the root. In one move Adam adds a new vertex to the already existing one, the new vertex gets the number equal to the minimum positive available integer. After each operation you need to calculate the minimum cost of coloring the resulting tree.

输入格式

The first line contains integer nn ( 1<=n<=1061<=n<=10^{6} ) — the number of times a new vertex is added. The second line contains nn numbers pip_{i} ( 1<=pi<=i1<=p_{i}<=i ) — the numbers of the vertexes to which we add another vertex.

输出格式

Print nn integers — the minimum costs of the tree painting after each addition.

输入输出样例

  • 输入#1

    11
    1 1 1 3 4 4 7 3 7 6 6
    

    输出#1

    1 1 1 1 1 2 2 2 2 2 3 

说明/提示

The figure below shows one of the possible variants to paint a tree from the sample at the last moment. The cost of the vertexes with numbers 11 and 12 equals 3.

首页