• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
james1207

博客园    首页    新随笔    联系   管理    订阅  订阅

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\n", root, f[root]);
    }

    return 0;
}


 

 

posted @ 2013-08-14 19:33  Class Xman  阅读(148)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3