1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstring>
  4. #include<string>
  5. #include<algorithm>
  6. #define MAXN 50010
  7. using namespace std;
  8. typedef struct PP{
  9. int id,par;
  10. bool operator < (const PP & a) const{
  11. if(par == a.par) return id < a.id;
  12. return par < a.par;
  13. }
  14. }Partition;
  15. typedef struct{
  16. int to,next;
  17. }Node;
  18. Node edge[*MAXN];
  19. Partition P[MAXN];
  20. int head[MAXN],vis[MAXN],cnt[MAXN],N;
  21. void addedge(int u,int v,int k){
  22. edge[k].to = v;
  23. edge[k].next = head[u];
  24. head[u] = k;
  25. }
  26. int dfs_child(int s){
  27. vis[s] = cnt[s] = ;
  28. for(int i = head[s];~i;i = edge[i].next){
  29. int u = edge[i].to;
  30. if(!vis[u]) cnt[s] += dfs_child(u);
  31. }
  32. return cnt[s]--;
  33. }
  34. void dfs_partition(int s){
  35. P[s].id = s;
  36. P[s].par = N-cnt[s]-;
  37. vis[s] = ;
  38. for(int i = head[s];~i;i = edge[i].next){
  39. int u = edge[i].to;
  40. if(!vis[u]){
  41. P[s].par = max(P[s].par,cnt[u]+);
  42. dfs_partition(u);
  43. }
  44. }
  45. }
  46. int main(){
  47. int u,v;
  48. while(~scanf("%d",&N)){
  49. int k = ;
  50. memset(head,-,sizeof(head));
  51. for(int i = ;i <= N-;i ++){
  52. scanf("%d%d",&u,&v);
  53. addedge(u,v,k++);
  54. addedge(v,u,k++);
  55. }
  56. memset(vis,,sizeof(vis));
  57. dfs_child();
  58. memset(vis,,sizeof(vis));
  59. dfs_partition();
  60. sort(P+,P+N+);
  61. k = ;
  62. while(P[k].par == P[].par){
  63. printf("%d ",P[k].id);
  64. k++;
  65. }
  66. printf("\n");
  67. }
  68. return ;
  69. }

POJ 3107的更多相关文章

  1. POJ 1655 Balancing Act&&POJ 3107 Godfather(树的重心)

    树的重心的定义是: 一个点的所有子树中节点数最大的子树节点数最小. 这句话可能说起来比较绕,但是其实想想他的字面意思也就是找到最平衡的那个点. POJ 1655 题目大意: 直接给你一棵树,让你求树的 ...

  2. POJ.1655 Balancing Act POJ.3107 Godfather(树的重心)

    关于树的重心:百度百科 有关博客:http://blog.csdn.net/acdreamers/article/details/16905653 1.Balancing Act To POJ.165 ...

  3. POJ 1655 Balancing Act && POJ 3107 Godfather

    题目大意: 根据题目的图很好理解意思,就是记录每一个点的balance,例如 i 的balance就是把 i 从这棵树中除去后得到的森林中含有结点数最多 的子树中的节点个数,然后找到所有节点中对应的b ...

  4. # [Poj 3107] Godfather 链式前向星+树的重心

    [Poj 3107] Godfather 链式前向星+树的重心 题意 http://poj.org/problem?id=3107 给定一棵树,找到所有重心,升序输出,n<=50000. 链式前 ...

  5. poj 3107 Godfather 求树的重心【树形dp】

    poj 3107 Godfather 和poj 1655差不多,那道会了这个也就差不多了. 题意:从小到大输出树的重心. 题会卡stl,要用邻接表存树..... #include<iostrea ...

  6. POJ 3107.Godfather 树形dp

    Godfather Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7536   Accepted: 2659 Descrip ...

  7. poj 3107 删点最大分支最小

    http://poj.org/problem?id=3107 这实际上就是找重心,在之前有做过:http://www.cnblogs.com/qlky/p/5780933.html #include ...

  8. POJ 3107 Godfather (树重心)

    题目链接:http://poj.org/problem?id=3107 题意: 数重心,并按从小到大输出. 思路: dfs #include <iostream> #include < ...

  9. poj 3107 树重心

    http://acm.hust.edu.cn/vjudge/problem/18069 和poj 1655差不多:http://www.cnblogs.com/qlky/p/5780933.html ...

  10. POJ 3107 Godfather (树形dp)

    题目链接 虽然题目不难,但是1A还是很爽, 只是刚开始理解错题意了,想了好久. 还有据说这个题用vector会超时,看了以后还是用邻接吧. 题意: 给一颗树,保证是一颗树,求去掉一个点以后的联通块里节 ...

随机推荐

  1. 反射 介绍System.Type类

    本节先介绍system.Type类,通过这个类可以访问关于任何数据类型的信息. 1. system.Type类以前把Type看作一个类,但它实际上是一个抽象的基类.只要实例化了一个Type对象,实际上 ...

  2. java新手笔记19 抽象类

    1.Shap package com.yfs.javase; public class Shape /*extends Object */{ //默认继承object object方法全部继承 //计 ...

  3. 03_天气查询_socket方式模拟_多线程方式

    [简述] 要重视Socket开发,企业后台服务特长使用Socket. 1.服务端要有可持续运行能力,保证线程一致在运行 2.并发处理能力,使用多线程 [工程截图] [WeatherRunner.jav ...

  4. 2016.08.06计算几何总结测试day1

    T1 bzoj1132[POI2008]TRO 还是太弱了....测试时看到这题直接懵逼,极角排序什么的根本想不起来,只会n^3暴力怎么破......不过竟然有84.....QAQ 正解是n^2log ...

  5. IDE开发<LER-Studio>(2)::登录模块

    软件中写登录模块是为了防止软件的恶意传播,内测阶段可以忽略登录. 以下为登录模块主要源代码: void CLoginDlg::OnBnClickedBtnLogin() { // TODO: Add ...

  6. 九度OJ 1019 简单计算器 -- 2006年浙江大学计算机及软件工程研究生机试真题

    题目地址:http://ac.jobdu.com/problem.php?pid=1019 题目描述:     读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值. 输入: ...

  7. WebConfig加密解密

    加密:aspnet_regiis -pef appSettings "G:\FlyMusicNew\Web"解密:aspnet_regiis -pdf appSettings &q ...

  8. apache基本安装配置

    1.安装apache 1.安装 wget http://mirrors.cnnic.cn/apache//httpd/httpd-2.2.31.tar.gz 2.安装zlib yum install ...

  9. node 无解回调 有解了

    http://cssor.com/javascript-workflow-by-tofishes.html

  10. #Leet Code# Evaluate Reverse Polish Notation

    描述:计算逆波兰表达法的结果 Sample: [", "*"] -> ((2 + 1) * 3) -> 9 [", "/", & ...