zoukankan      html  css  js  c++  java
  • CCF-CSP题解 201503-4 网络延时

    求树的直径。

    两遍(dfs)就好了。

    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    #include <stack>
    const int maxn = 10000;
    const int maxm = 10000;
    
    using namespace std;
    
    int to[(maxn + maxm) * 2 + 10];
    int nex[(maxn + maxm) * 2 + 10];
    int head[maxn + maxm + 10], cnt = 0;
    
    void addEdge(int a, int b)
    {
        to[cnt] = b; nex[cnt] = head[a]; head[a] = cnt++;
        to[cnt] = a; nex[cnt] = head[b]; head[b] = cnt++;
    }
    
    int ans, depth;
    
    void dfs(int x, int f, int d)
    {
        if (d > depth)
            ans = x, depth = d;
        for (int i = head[x]; i != -1; i = nex[i])
        {
            int l = to[i];
            if (l != f)
                dfs(l, x, d + 1);
        }
    }
    
    int main()
    {
        int n, m;
        scanf("%d%d", &n, &m);
    
        memset(head, -1, sizeof(head));
    
        for (int i = 2, temp; i <= n; i++)
        {
            scanf("%d", &temp);
            addEdge(i, temp);
        }
    
        for (int i = 1, temp; i <= m; i++)
        {
            scanf("%d", &temp);
            addEdge(i + n, temp);
        }
    
        ans = depth = -1;
        dfs(1, 1, 0);
    
        depth = -1;
        dfs(ans, ans, 0);
    
        printf("%d
    ", depth);
    
        return 0;
    }
    
  • 相关阅读:
    jQuery工具函数
    jqXHR对象
    跨域获取
    Ajax :六个全局事件
    表单序列化
    Ajax : $. get()和$.post() $.getScript $.getJSON
    Ajax : load()
    列队动画
    关于MindManager显示不同级别的控制
    Mybatis 查询传多个参数(3中方法)
  • 原文地址:https://www.cnblogs.com/acboyty/p/11479076.html
Copyright © 2011-2022 走看看