A10691 | PolandBall and Forest
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
PolandBall lives in a forest with his family. There are some trees in the forest. Trees are undirected acyclic graphs with $k$ vertices and $k-1$ edges, where $k$ 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 $1$ to $n$ . For each Ball $i$ 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?
There is exactly one relative living in each vertex of each tree, they have unique ids from $1$ to $n$ . For each Ball $i$ 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 $n$ ( $1<=n<=10^{4}$ ) — the number of Balls living in the forest.
The second line contains a sequence $p_{1},p_{2},...,p_{n}$ of length $n$ , where ( $1<=p_{i}<=n$ ) holds and $p_{i}$ denotes the most distant from Ball $i$ relative living on the same tree. If there are several most distant relatives living on the same tree, $p_{i}$ is the id of one with the smallest id.
It's guaranteed that the sequence $p$ corresponds to some valid forest.
Hacking: To hack someone, you should provide a correct forest as a test. The sequence $p$ 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 $n$ ( $1<=n<=10^{4}$ ) — the number of Balls and the integer $m$ ( $0<=m<n$ ) — the total number of edges in the forest. Then $m$ lines should follow. The $i$ -th of them should contain two integers $a_{i}$ and $b_{i}$ and represent an edge between vertices in which relatives $a_{i}$ and $b_{i}$ live. For example, the first sample is written as follows:
The second line contains a sequence $p_{1},p_{2},...,p_{n}$ of length $n$ , where ( $1<=p_{i}<=n$ ) holds and $p_{i}$ denotes the most distant from Ball $i$ relative living on the same tree. If there are several most distant relatives living on the same tree, $p_{i}$ is the id of one with the smallest id.
It's guaranteed that the sequence $p$ corresponds to some valid forest.
Hacking: To hack someone, you should provide a correct forest as a test. The sequence $p$ 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 $n$ ( $1<=n<=10^{4}$ ) — the number of Balls and the integer $m$ ( $0<=m<n$ ) — the total number of edges in the forest. Then $m$ lines should follow. The $i$ -th of them should contain two integers $a_{i}$ and $b_{i}$ and represent an edge between vertices in which relatives $a_{i}$ and $b_{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.
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 $2$ trees overall.
In the second sample testcase, the only possible graph is one vertex and no edges. Therefore, there is only one tree.
There are $2$ trees overall.
In the second sample testcase, the only possible graph is one vertex and no edges. Therefore, there is only one tree.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted