zoukankan      html  css  js  c++  java
  • POJ 1655 Balancing Act【树的重心】

    这个题也很裸了……不多说。

    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <vector>
    using namespace std;
    #define N 20010
    int s[N], f[N], n, root;
    vector<int> g[N];
    void getroot(int now, int fa) {
        int u;
        s[now] = 1;
        f[now] = 0;
        for (int i=0; i<g[now].size(); i++)
            if ((u=g[now][i]) != fa) {
                getroot(u, now);
                s[now] += s[u];
                f[now] = max(f[now], s[u]);
            }
        f[now] = max(f[now], n-s[now]);
        if (f[now] < f[root]) root = now;
    }
    int main() {
    #ifndef ONLINE_JUDGE
        freopen("in.txt", "r", stdin);
    #endif
        int T, a, b;
        scanf("%d", &T);
        while (T--) {
            scanf("%d", &n);
            for (int i=1; i<=n; i++) g[i].clear();
            for (int i=1; i<n; i++) {
                scanf("%d%d", &a, &b);
                g[a].push_back(b); g[b].push_back(a);
            }
            f[0] = n;
            getroot(1, root=0);
            int cnt = 0;
            for (int i=1; i<=n; i++) if (f[i] == f[root]) {
                root = i; break;
            }
            printf("%d %d
    ", root, f[root]);
        }
    
        return 0;
    }
    


  • 相关阅读:
    socket套接字 struct模块
    网络编程 OSI七层协议
    内置方法 eval | exec 元类 单例
    选课系统
    iOS清理缓存 2016-04-19
    iOS 蓝牙 技术
    iOS人脸识别
    iOS 指纹识别
    极光推送的初步配置及其使用
    iOS 加急审核
  • 原文地址:https://www.cnblogs.com/james1207/p/3258272.html
Copyright © 2011-2022 走看看