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;
    }
  • 相关阅读:
    HDU 4296 Buildings(贪心)
    HDU 4288 Coder(线段树)
    hdu 5073 Galaxy
    ZOJ 3905 Cake(贪心+dp)
    ZOJ 3903 Ant(公式推导)
    除法求逆元(扩展欧几里德和费马小定理)
    HDU 4442 Physical Examination(关于贪心排序)
    ACM vim配置
    2015 南阳ccpc The Battle of Chibi (uestc 1217)
    次小生成树(入门)
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7626715.html
Copyright © 2011-2022 走看看