CF1249B2.Books Exchange (hard version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The only difference between easy and hard versions is constraints.

There are nn kids, each of them is reading a unique book. At the end of any day, the ii -th kid will give his book to the pip_i -th kid (in case of i=pii = p_i the kid will give his book to himself). It is guaranteed that all values of pip_i are distinct integers from 11 to nn (i.e. pp is a permutation). The sequence pp doesn't change from day to day, it is fixed.

For example, if n=6n=6 and p=[4,6,1,3,5,2]p=[4, 6, 1, 3, 5, 2] then at the end of the first day the book of the 11 -st kid will belong to the 44 -th kid, the 22 -nd kid will belong to the 66 -th kid and so on. At the end of the second day the book of the 11 -st kid will belong to the 33 -th kid, the 22 -nd kid will belong to the 22 -th kid and so on.

Your task is to determine the number of the day the book of the ii -th child is returned back to him for the first time for every ii from 11 to nn .

Consider the following example: p=[5,1,2,4,3]p = [5, 1, 2, 4, 3] . The book of the 11 -st kid will be passed to the following kids:

  • after the 11 -st day it will belong to the 55 -th kid,
  • after the 22 -nd day it will belong to the 33 -rd kid,
  • after the 33 -rd day it will belong to the 22 -nd kid,
  • after the 44 -th day it will belong to the 11 -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 qq independent queries.

输入格式

The first line of the input contains one integer qq ( 1q10001 \le q \le 1000 ) — the number of queries. Then qq queries follow.

The first line of the query contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of kids in the query. The second line of the query contains nn integers p1,p2,,pnp_1, p_2, \dots, p_n ( 1pin1 \le p_i \le n , all pip_i are distinct, i.e. pp is a permutation), where pip_i is the kid which will get the book of the ii -th kid.

It is guaranteed that n2105\sum n \le 2 \cdot 10^5 (sum of nn over all queries does not exceed 21052 \cdot 10^5 ).

输出格式

For each query, print the answer on it: nn integers a1,a2,,ana_1, a_2, \dots, a_n , where aia_i is the number of the day the book of the ii -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 
    
首页