zoukankan      html  css  js  c++  java
  • poj 1470 Closest Common Ancestors

    Closest Common Ancestors
    Time Limit: 2000MS   Memory Limit: 10000K
    Total Submissions: 14635   Accepted: 4676

    Description

    Write a program that takes as input a rooted tree and a list of pairs of vertices. For each pair (u,v) the program determines the closest common ancestor of u and v in the tree. The closest common ancestor of two nodes u and v is the node w that is an ancestor of both u and v and has the greatest depth in the tree. A node can be its own ancestor (for example in Figure 1 the ancestors of node 2 are 2 and 5)

    Input

    The data set, which is read from a the std input, starts with the tree description, in the form: 

    nr_of_vertices 
    vertex:(nr_of_successors) successor1 successor2 ... successorn 
    ...
    where vertices are represented as integers from 1 to n ( n <= 900 ). The tree description is followed by a list of pairs of vertices, in the form: 
    nr_of_pairs 
    (u v) (x y) ... 

    The input file contents several data sets (at least one). 
    Note that white-spaces (tabs, spaces and line breaks) can be used freely in the input.

    Output

    For each common ancestor the program prints the ancestor and the number of pair for which it is an ancestor. The results are printed on the standard output on separate lines, in to the ascending order of the vertices, in the format: ancestor:times 
    For example, for the following tree: 

    Sample Input

    5
    5:(3) 1 4 2
    1:(0)
    4:(0)
    2:(1) 3
    3:(0)
    6
    (1 5) (1 4) (4 2)
          (2 3)
    (1 3) (4 3)

    Sample Output

    2:1
    5:5

    Hint

    Huge input, scanf is recommended.
     
    这个就是一个裸裸的LCA题目,简单的dfs的应用
    #include<map>
    #include<set>
    #include<stack>
    #include<queue>
    #include<cmath>
    #include<vector>
    #include<cstdio>
    #include<string>
    #include<cstring>
    #include<cstdlib>
    #include<iostream>
    #include<algorithm>
    #define  inf 0x0f0f0f0f
    using namespace std;
    
    const int maxn=1000;
    vector<int>tree[maxn],que[maxn];
    int indegree[maxn],num[maxn],father[maxn];
    bool vis[maxn];
    
    void init(int n)
    {
        for (int i=0;i<=n;i++)
        {
            tree[i].clear();
            que[i].clear();
            num[i]=0;
            indegree[i]=0;
            vis[i]=0;
            father[i]=i;
        }
    }
    
    int find(int x)
    {
        return x==father[x]?x:father[x]=find(father[x]);
    }
    
    void Lca(int u)
    {
        father[u]=u;
        for (int i=0;i<tree[u].size();i++)
        {
            int v=tree[u][i];
            Lca(v);
            father[v]=u;
        }
        vis[u]=true;
        for (int i=0;i<que[u].size();i++)
        {
            int v=que[u][i];
            if(vis[v]) num[father[find(v)]]++;
        }
    }
    
    int main()
    {
        //freopen("in.txt","r",stdin);
        int x,y,n,q,s;
        char s1[10],s2[10];
        while (scanf("%d",&n)!=EOF)
        {
            init(n);
            for (int i=1;i<=n;i++)
            {
                scanf("%d:(%d)",&x,&s);
                for (int j=0;j<s;j++)
                {
                    scanf("%d",&y);
                    tree[x].push_back(y);
                    indegree[y]++;
                }
            }
            scanf("%d",&q);
            for (int i=0;i<q;i++)
            {
                while (getchar()!='(');
                scanf("%d%d",&x,&y);
                while (getchar()!=')');
                que[x].push_back(y);
                que[y].push_back(x);
            }
            for (int i=1;i<=n;i++)
            {
                if (indegree[i]==0)
                {
                    Lca(i);
                    break;
                }
            }
            for (int i=1;i<=n;i++)
            {
                if (num[i])
                printf("%d:%d
    ",i,num[i]);
            }
        }
        return 0;
    }
    至少做到我努力了
  • 相关阅读:
    Codeforces Round #649 (Div. 2) D. Ehab's Last Corollary
    Educational Codeforces Round 89 (Rated for Div. 2) E. Two Arrays
    Educational Codeforces Round 89 (Rated for Div. 2) D. Two Divisors
    Codeforces Round #647 (Div. 2) E. Johnny and Grandmaster
    Codeforces Round #647 (Div. 2) F. Johnny and Megan's Necklace
    Codeforces Round #648 (Div. 2) G. Secure Password
    Codeforces Round #646 (Div. 2) F. Rotating Substrings
    C++STL常见用法
    各类学习慕课(不定期更新
    高阶等差数列
  • 原文地址:https://www.cnblogs.com/chensunrise/p/3745455.html
Copyright © 2011-2022 走看看