记录编号 307892 评测结果 AAAAAAAAAA
题目名称 教官 最终得分 100
用户昵称 Gravataropen the window 是否通过 通过
代码语言 C++ 运行时间 1.287 s
提交时间 2016-09-16 13:45:25 内存使用 0.63 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#define UP unsigned long long
using namespace std;
UP tot=1;
int a[100001];
int n,i;
UP gcd(UP x,UP y)
{
    UP p=x,q=y,r=x%y;
	while (r)
	{
        p=q;
		q=r;
		r=p%q;
	}
	return q;
	
}
int main()
{
	freopen("officer.in","r",stdin);
	freopen("officer.out","w",stdout);
	scanf("%d",&n);
	for (i=1; i<=n; ++i) scanf("%d",&a[i]);
	for (i=1; i<=n; ++i)
    { 
		UP l=0;
		int t=i;
		do 
		{
			t=a[t];
            l++;
		}while (t!=i);
        tot=(l/gcd(tot,l))*tot;
	}
	cout<<tot<<endl;
	return 0;
}