• Codeforces Round #383 (Div. 2) C. Arpa's loud Owf and Mehrdad's evil plan —— DFS找环


    题目链接:http://codeforces.com/contest/742/problem/C


    C. Arpa's loud Owf and Mehrdad's evil plan
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 crushx and 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 - 1times) 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 yx 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.

    Examples
    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.



    题解:


    错误的做法:

    本以为t最大不会超过n,所以就用p[i][j]记录,记录距离结点i,j个距离的是哪个顶点。然后再依次枚举j,找到合适的t。

    后来发现:t可以大于n,所以此方法失败。


    正确的做法:

    t为所有环的最小公倍数。(当环长为奇数时,直接取环长;当环长为偶数时,取环长的一半,因为可以刚好走到正对面)




    错误做法:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 typedef long long LL;
     4 const double eps = 1e-6;
     5 const int INF = 2e9;
     6 const LL LNF = 9e18;
     7 const int mod = 1e9+7;
     8 const int maxn = 100+10;
     9 
    10 int n, a[maxn], p[maxn][maxn];
    11 
    12 void dfs(int f, int u, int k)
    13 {
    14     if(k>n) return;
    15     p[f][k] = u;
    16     dfs(f,a[u], k+1);
    17 }
    18 
    19 int main()
    20 {
    21     cin>>n;
    22     for(int i = 1; i<=n; i++)
    23         cin>>a[i];
    24     for(int i = 1; i<=n; i++)
    25         dfs(i,a[i],1);
    26 
    27     int ans = -1;
    28     for(int t = 1; t<=n; t++)
    29     {
    30         int i;
    31         for(i = 1; i<=n; i++)
    32         {
    33             int v = p[i][t];
    34             if(p[v][t]!=i)
    35                 break;
    36         }
    37         if(i==n+1)
    38         {
    39             ans = t;
    40             break;
    41         }
    42     }
    43     cout<<ans<<endl;
    44 }
    View Code

    正确做法:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 typedef long long LL;
     4 const double eps = 1e-6;
     5 const int INF = 2e9;
     6 const LL LNF = 9e18;
     7 const int mod = 1e9+7;
     8 const int maxn = 100+10;
     9 
    10 int n, a[maxn],vis[maxn];
    11 
    12 int gcd(int a, int b) { return b==0?a:gcd(b,a%b); }
    13 
    14 int dfs(int f, int i, int k)
    15 {
    16     if(vis[i]) return (i==f)?k:-1;
    17     vis[i] = 1;
    18     return dfs(f, a[i], k+1);
    19 }
    20 
    21 int main()
    22 {
    23     cin>>n;
    24     for(int i = 1; i<=n; i++)
    25         cin>>a[i];
    26 
    27     int ans = 1;
    28     for(int i = 1; i<=n; i++)
    29     {
    30         if(vis[i]) continue;
    31         int x = dfs(i,i,0);
    32         if(x==-1)
    33         {
    34             ans = -1;
    35             break;
    36         }
    37         if(!(x&1)) x >>= 1;
    38         ans = (ans*x)/gcd(ans,x);
    39     }
    40     cout<<ans<<endl;
    41 }
    View Code
  • 相关阅读:
    获取网络上的北京时间,如果大于设定的过期时间就...
    MYSQL注释
    mysql的perror
    Spring + CXF(REST):webservice not found
    vim 学习笔记
    mysql存储过程controller的not found造成混乱的解决办法
    pt-query-digest 安装及使用
    MYSQL预处理传参不区分大小写解决办法
    解压版mysql安装--windows系统
    sql plus 和 pl/sql无法连接远程oracle数据库
  • 原文地址:https://www.cnblogs.com/DOLFAMINGO/p/7538648.html
Copyright © 2020-2023  润新知