Hide

Problem M
Mirinae

There are N planets in Vita’s galaxy. In order to improve the security of the planets, Vita assigned each planet to guard exactly one other planet. In particular, the i-th planet guards the Ai-th planet for every 1iN.

Vita wants to construct a protective barrier surrounding multiple planets. Let the set of planets to be protected by the barrier be S, then each planet in S must be guarding a planet not in S.

Help Vita determine the maximum number of planets to be protected by the barrier.

Input

The first line of input contains an integer N (2N106), the number of planets.

The second line contains N integers. For every 1iN, i-th integer represents Ai (1AiN, Aii), which means the i-th planet guards the Ai-th planet.

Output

Output a single integer, the maximum number of planets in the protective barrier.

Sample Input 1 Sample Output 1
6
3 6 2 5 4 3
3
Hide

Please log in to submit a solution to this problem

Log in