Books Exchange (hard version)(记忆化数组)Codeforces Round #595 (Div. 3)

原题目:

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 pipi -th kid (in case of i=pii=pi the kid will give his book to himself). It is guaranteed that all values of pipi 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.

Input

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

The first line of the query contains one integer nn (1≤n≤2⋅1051≤n≤2⋅105 ) — the number of kids in the query. The second line of the query contains nn integers p1,p2,…,pnp1,p2,…,pn (1≤pi≤n1≤pi≤n , all pipi are distinct, i.e. pp is a permutation), where pipi is the kid which will get the book of the ii -th kid.

It is guaranteed that ∑n≤2⋅105∑n≤2⋅105 (sum of nn over all queries does not exceed 2⋅1052⋅105 ).

Output

For each query, print the answer on it: nn integers a1,a2,…,ana1,a2,…,an , where aiai 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.

跟上一个一样,只不过是数据加强了,直接暴力会T掉

用记忆化数组来实现

#include<iostream>
#include<string.h>
using namespace std;
long long a[200005],b[200005];
int dfs(int stdd, int nowid, int toid, int step)//nowid表示路径 
{    
if(stdd==toid)        
return b[nowid]=step;    
return b[nowid]=dfs(stdd, toid, a[toid], step+1);
}
int main()
{
	int t,m;
	scanf("%d",&t);
	while(t--)
	{
		int x,k,num;
		memset(a,0,sizeof(a));
		memset(b,0,sizeof(b));
		scanf("%d",&m);
		for(int i=1;i<=m;i++)
		   scanf("%d",&a[i]);
		for(int i=1;i<=m;i++)
		{
			//w=0;
			if(b[i]==0)
			{
				dfs(i,i,a[i],1); 
			}
		  
		}
	   for(int i=1;i<=m;i++)
	   printf("%d ",b[i]);
	   printf("\n");
	}
	return 0;
}

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

deebcjrb

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值