CF755C.PolandBall and Forest

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

PolandBall lives in a forest with his family. There are some trees in the forest. Trees are undirected acyclic graphs with kk vertices and k1k-1 edges, where kk is some integer. Note that one vertex is a valid tree.

There is exactly one relative living in each vertex of each tree, they have unique ids from 11 to nn . For each Ball ii we know the id of its most distant relative living on the same tree. If there are several such vertices, we only know the value of the one with smallest id among those.

How many trees are there in the forest?

输入格式

The first line contains single integer nn ( 1<=n<=1041<=n<=10^{4} ) — the number of Balls living in the forest.

The second line contains a sequence p1,p2,...,pnp_{1},p_{2},...,p_{n} of length nn , where ( 1<=pi<=n1<=p_{i}<=n ) holds and pip_{i} denotes the most distant from Ball ii relative living on the same tree. If there are several most distant relatives living on the same tree, pip_{i} is the id of one with the smallest id.

It's guaranteed that the sequence pp corresponds to some valid forest.

Hacking: To hack someone, you should provide a correct forest as a test. The sequence pp will be calculated according to the forest and given to the solution you try to hack as input. Use the following format:

In the first line, output the integer nn ( 1<=n<=1041<=n<=10^{4} ) — the number of Balls and the integer mm ( 0<=m<n ) — the total number of edges in the forest. Then mm lines should follow. The ii -th of them should contain two integers aia_{i} and bib_{i} and represent an edge between vertices in which relatives aia_{i} and bib_{i} live. For example, the first sample is written as follows:

<br></br>5 3<br></br>1 2<br></br>3 4<br></br>4 5<br></br>

输出格式

You should output the number of trees in the forest where PolandBall lives.

Interaction

From the technical side, this problem is interactive. However, it should not affect you (except hacking) since there is no interaction.

输入输出样例

  • 输入#1

    5
    2 1 5 3 3

    输出#1

    2
  • 输入#2

    1
    1
    

    输出#2

    1

说明/提示

In the first sample testcase, possible forest is: 1-2 3-4-5.

There are 22 trees overall.

In the second sample testcase, the only possible graph is one vertex and no edges. Therefore, there is only one tree.

首页