A13046 | Books Exchange (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The only difference between easy and hard versions is constraints.
There are $n$ kids, each of them is reading a unique book. At the end of any day, the $i$ -th kid will give his book to the $p_i$ -th kid (in case of $i = p_i$ the kid will give his book to himself). It is guaranteed that all values of $p_i$ are distinct integers from $1$ to $n$ (i.e. $p$ is a permutation). The sequence $p$ doesn't change from day to day, it is fixed.
For example, if $n=6$ and $p=[4, 6, 1, 3, 5, 2]$ then at the end of the first day the book of the $1$ -st kid will belong to the $4$ -th kid, the $2$ -nd kid will belong to the $6$ -th kid and so on. At the end of the second day the book of the $1$ -st kid will belong to the $3$ -th kid, the $2$ -nd kid will belong to the $2$ -th kid and so on.
Your task is to determine the number of the day the book of the $i$ -th child is returned back to him for the first time for every $i$ from $1$ to $n$ .
Consider the following example: $p = [5, 1, 2, 4, 3]$ . The book of the $1$ -st kid will be passed to the following kids:
- after the $1$ -st day it will belong to the $5$ -th kid,
- after the $2$ -nd day it will belong to the $3$ -rd kid,
- after the $3$ -rd day it will belong to the $2$ -nd kid,
- after the $4$ -th day it will belong to the $1$ -st kid.
So after the fourth day, the book of the first kid will return to its owner. The book of the fourth kid will return to him for the first time after exactly one day.
You have to answer $q$ independent queries.
There are $n$ kids, each of them is reading a unique book. At the end of any day, the $i$ -th kid will give his book to the $p_i$ -th kid (in case of $i = p_i$ the kid will give his book to himself). It is guaranteed that all values of $p_i$ are distinct integers from $1$ to $n$ (i.e. $p$ is a permutation). The sequence $p$ doesn't change from day to day, it is fixed.
For example, if $n=6$ and $p=[4, 6, 1, 3, 5, 2]$ then at the end of the first day the book of the $1$ -st kid will belong to the $4$ -th kid, the $2$ -nd kid will belong to the $6$ -th kid and so on. At the end of the second day the book of the $1$ -st kid will belong to the $3$ -th kid, the $2$ -nd kid will belong to the $2$ -th kid and so on.
Your task is to determine the number of the day the book of the $i$ -th child is returned back to him for the first time for every $i$ from $1$ to $n$ .
Consider the following example: $p = [5, 1, 2, 4, 3]$ . The book of the $1$ -st kid will be passed to the following kids:
- after the $1$ -st day it will belong to the $5$ -th kid,
- after the $2$ -nd day it will belong to the $3$ -rd kid,
- after the $3$ -rd day it will belong to the $2$ -nd kid,
- after the $4$ -th day it will belong to the $1$ -st kid.
So after the fourth day, the book of the first kid will return to its owner. The book of the fourth kid will return to him for the first time after exactly one day.
You have to answer $q$ independent queries.
输入格式
The first line of the input contains one integer $q$ ( $1 \le q \le 1000$ ) — the number of queries. Then $q$ queries follow.
The first line of the query contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the number of kids in the query. The second line of the query contains $n$ integers $p_1, p_2, \dots, p_n$ ( $1 \le p_i \le n$ , all $p_i$ are distinct, i.e. $p$ is a permutation), where $p_i$ is the kid which will get the book of the $i$ -th kid.
It is guaranteed that $\sum n \le 2 \cdot 10^5$ (sum of $n$ over all queries does not exceed $2 \cdot 10^5$ ).
The first line of the query contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the number of kids in the query. The second line of the query contains $n$ integers $p_1, p_2, \dots, p_n$ ( $1 \le p_i \le n$ , all $p_i$ are distinct, i.e. $p$ is a permutation), where $p_i$ is the kid which will get the book of the $i$ -th kid.
It is guaranteed that $\sum n \le 2 \cdot 10^5$ (sum of $n$ over all queries does not exceed $2 \cdot 10^5$ ).
输出格式
For each query, print the answer on it: $n$ integers $a_1, a_2, \dots, a_n$ , where $a_i$ is the number of the day the book of the $i$ -th child is returned back to him for the first time in this query.
输入输出样例
输入 #1
6 5 1 2 3 4 5 3 2 3 1 6 4 6 2 1 5 3 1 1 4 3 4 1 2 5 5 1 2 4 3
输出 #1
1 1 1 1 1 3 3 3 2 3 3 2 1 3 1 2 2 2 2 4 4 4 1 4
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted