CUC-SUMMER-CONTEST-2-D

D - Arpa's loud Owf and Mehrdad's evil plan
Codeforces Round #383 (Div. 2)

As you have noticed, there are lovely girls in Arpa’s land.
People in Arpa's land are numbered from 1 to n. Everyone has exactly one crush, i-th person's crush is person with the number crushi
.


Someday Arpa shouted Owf loudly from the top of the palace and a funny game started in Arpa's land. The rules are as follows.
The game consists of rounds. Assume person x wants to start a round, he calls crushxand says: "Oww...wwf" (the letter w is repeated t times) and cuts off the phone immediately. If t >1 then crushx calls crushcrushx and says: "Oww...wwf" (the letter w is repeated t - 1 times) and cuts off the phone immediately. The round continues until some person receives an "Owf" (t = 1). This person is called the Joon-Joon of the round. There can't be two rounds at the same time.
Mehrdad has an evil plan to make the game more funny, he wants to find smallest t(t ≥ 1) such that for each person x, if x starts some round and y becomes the Joon-Joon of the round, then by starting from y, x would become the Joon-Joon of the round. Find such t for Mehrdad if it's possible.
Some strange fact in Arpa's land is that someone can be himself's crush (i.e. crushi = i).

Input
The first line of input contains integer n (1 ≤ n ≤ 100) — the number of people in Arpa's land.
The second line contains n integers, i-th of them is crushi (1 ≤ crushi ≤ n) — the number of i-th person's crush.

Output
If there is no t satisfying the condition, print -1. Otherwise print such smallest t.

Example
Input
4
2 3 1 4

Output
3

Input
4
4 4 4 4

Output
-1

Input
4
2 1 4 3

Output
1

Note
In the first sample suppose t = 3.
If the first person starts some round:
The first person calls the second person and says "Owwwf", then the second person calls the third person and says "Owwf", then the third person calls the first person and says "Owf", so the first person becomes Joon-Joon of the round. So the condition is satisfied if x is 1.
The process is similar for the second and the third person.
If the fourth person starts some round:
The fourth person calls himself and says "Owwwf", then he calls himself again and says "Owwf", then he calls himself for another time and says "Owf", so the fourth person becomes Joon-Joon of the round. So the condition is satisfied when x is 4.
In the last example if the first person starts a round, then the second person becomes the Joon-Joon, and vice versa.


题意:一个有向图,使任意从结点a到结点b的距离等于结点b到结点a的距离,问这个距离最小值是多少

解法:对于每个节点的出度和入度一定为1,否者不可能实现,那么图为很多个环,对于奇数环最下距离为节点数,偶数环最下距离为节点数的一半,求所有最小距离的最小公倍数

代码·:

#include<iostream>
using namespace std;
int a[105],cnt=0;
bool vis[105];
int mi(int x,int y){
    return y?mi(y,x%y):x;
}
int ma(int x,int y){
    return x/mi(x,y)*y;
}
int dfs(int x){
    int c=1,next=a[x];
    vis[x]=0;
    while(1){
        vis[next]=1;
        if(next==x)
            break;
        next=a[next];
        c++;
    }
    return c;
}
int main()
{
    int n,flag=0,ans;
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
        if(vis[a[i]]==0)
            vis[a[i]]=1;
        else
            flag=1;
    }
    if(flag==1){
        cout<<-1<<endl;
        return 0;
    }
    ans=dfs(1);
    if(ans%2==0)
        ans/=2;
    for(int i=1;i<=n;i++){
        if(vis[i]==1){
            int now=dfs(i);
            if(now%2==0)
                now/=2;
            ans=ma(ans,now);
        }
    }
    cout<<ans<<endl;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,934评论 0 23
  • 如果不能把握住每一分每一秒,就算回到过去又有什么意义,也不是一样会荒废?如果能自信把握住时间,为何不好好把握眼前,...
    孙有腾阅读 247评论 0 1
  • (一) 秋姑娘,你好。 繁星点点,摇缀星辰,究竟是哪处的泥泞道路,虽泥泞,却显得别有一番景致,与高楼大厦相比,乡间...
    Ling_00阅读 147评论 0 4
  • 红尘紫陌烟火人间 谁又不是匆匆过客 回眸凝望 曲曲折折高高低低 我们是否不曾辜负最本真的自己 沧海桑田风云变幻 谁...
    依莲竹风阅读 261评论 0 2