zoukankan      html  css  js  c++  java
  • 【codeforces 755C】PolandBall and Forest

    time limit per test1 second
    memory limit per test256 megabytes
    inputstandard input
    outputstandard output
    PolandBall lives in a forest with his family. There are some trees in the forest. Trees are undirected acyclic graphs with k vertices and k - 1 edges, where k is some integer. Note that one vertex is a valid tree.

    There is exactly one relative living in each vertex of each tree, they have unique ids from 1 to n. For each Ball i we know the id of its most distant relative living on the same tree. If there are several such vertices, we only know the value of the one with smallest id among those.

    How many trees are there in the forest?

    Input
    The first line contains single integer n (1 ≤ n ≤ 104) — the number of Balls living in the forest.

    The second line contains a sequence p1, p2, …, pn of length n, where (1 ≤ pi ≤ n) holds and pi denotes the most distant from Ball i relative living on the same tree. If there are several most distant relatives living on the same tree, pi is the id of one with the smallest id.

    It’s guaranteed that the sequence p corresponds to some valid forest.

    Hacking: To hack someone, you should provide a correct forest as a test. The sequence p will be calculated according to the forest and given to the solution you try to hack as input. Use the following format:

    In the first line, output the integer n (1 ≤ n ≤ 104) — the number of Balls and the integer m (0 ≤ m < n) — the total number of edges in the forest. Then m lines should follow. The i-th of them should contain two integers ai and bi and represent an edge between vertices in which relatives ai and bi live. For example, the first sample is written as follows:

    5 3
    1 2
    3 4
    4 5
    Output
    You should output the number of trees in the forest where PolandBall lives.

    Interaction
    From the technical side, this problem is interactive. However, it should not affect you (except hacking) since there is no interaction.

    Examples
    input
    5
    2 1 5 3 3
    output
    2
    input
    1
    1
    output
    1
    Note
    In the first sample testcase, possible forest is: 1-2 3-4-5.

    There are 2 trees overall.

    In the second sample testcase, the only possible graph is one vertex and no edges. Therefore, there is only one tree.

    【题目链接】:http://codeforces.com/contest/755/problem/C

    【题解】

    从任意一个点u开始dfs,找离它最远的点v;
    然后从v再dfs找离它最远的点v’;
    v和v’是树的直径的两个端点;

    v和v’所在的树中的任意一个节点x,离x最远的点要么是v要么是v’;

    【完整代码】

    #include <bits/stdc++.h>
    using namespace std;
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    #define LL long long
    #define rep1(i,a,b) for (int i = a;i <= b;i++)
    #define rep2(i,a,b) for (int i = a;i >= b;i--)
    #define mp make_pair
    #define pb push_back
    #define fi first
    #define se second
    #define rei(x) scanf("%d",&x)
    #define rel(x) scanf("%I64d",&x)
    
    typedef pair<int,int> pii;
    typedef pair<LL,LL> pll;
    
    const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
    const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
    const double pi = acos(-1.0);
    const int MAXN = 1e4+100;
    
    int n;
    int p[MAXN];
    bool bo[MAXN];
    
    int main()
    {
        //freopen("F:\rush.txt","r",stdin);
        rei(n);
        rep1(i,1,n)
            rei(p[i]);
        memset(bo,false,sizeof bo);
        int cnt = 0;
        rep1(i,1,n)
            if (!bo[p[i]])
            {
                int x = p[i];
                bo[x] = true;
                int y = p[x];
                bo[y] = true;
                cnt++;
            }
        cout << cnt << endl;
        return 0;
    }
  • 相关阅读:
    多态
    SSM前后端分离 ssm+html+js(ajax) 这种controll层的返回值是结合或者网址
    Eclipse创建ssm项目
    在idea中创建Maven项目
    Maven的安装和配置
    IDEA修改快捷键!和一些常用的快捷键
    mysql数据库的安装和连接测试并给root用户赋密码
    ssm动态sql语句
    Java基础--JDBC
    Java基础--注解、反射
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7626715.html
Copyright © 2011-2022 走看看