Score : $800$ points
There are $N$ towns in Snuke Kingdom, conveniently numbered $1$ through $N$. Town $1$ is the capital.
Each town in the kingdom has a Teleporter, a facility that instantly transports a person to another place. The destination of the Teleporter of town $i$ is town $a_i$ ($1≤a_i≤N$). It is guaranteed that one can get to the capital from any town by using the Teleporters some number of times.
King Snuke loves the integer $K$. The selfish king wants to change the destination of the Teleporters so that the following holds:
Find the minimum number of the Teleporters whose destinations need to be changed in order to satisfy the king's desire.
The input is given from Standard Input in the following format:
$N$ $K$ $a_1$ $a_2$ $...$ $a_N$
Print the minimum number of the Teleporters whose destinations need to be changed in order to satisfy King Snuke's desire.
3 1 2 3 1
2
Change the destinations of the Teleporters to $a = (1,1,1)$.
4 2 1 1 2 2
0
There is no need to change the destinations of the Teleporters, since the king's desire is already satisfied.
8 2 4 1 2 3 1 2 3 4
3
For example, change the destinations of the Teleporters to $a = (1,1,2,1,1,2,2,4)$.