CodeForces 219D Choosing Capital for Treeland(树形DP)

12 篇文章 1 订阅

题意:一个国家有n个点,由单向边连接,现在要改变一些点到其所能到达的所有点的方向,问怎么改最小,并且输出那些点

思路:显然的对于某个结点,考虑的就是以它为根的子树和它的父节点要改变的数目,我们可以首先以点1作为这棵树的根结点,那么对于它来说dp[1]是已经决定的了,那么再又dp[1]递推到下面的子节点,这个过程就完成了


#include <cstdio>
#include <queue>
#include <cstring>
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <string>
#include <set>
#include <ctime>
#include <cmath>
#include <cctype>
using namespace std;
#define maxn 200020
#define LL long long
#define inf 1e9
int cas=1,T;
struct Edge
{
	int v,w;
	Edge(int vv,int ww):v(vv),w(ww){}
};
vector<Edge>e[maxn];
int vis[maxn],dp[maxn];
int res;
void dfs(int root)
{
	vis[root]=1;
	for (int i = 0;i<e[root].size();i++)
	{
		int v = e[root][i].v,w=e[root][i].w;
		if (!vis[v])
		{
            dfs(v);
			res+=w;
		}
	}
}
void dfs1(int root)
{
	vis[root]=1;
	for (int i = 0;i<e[root].size();i++)
	{
		int v = e[root][i].v,w=e[root][i].w;
		if (!vis[v])
		{
			if (w==0)
			{
				dp[v]=dp[root]+1;
			}
			else
				dp[v]=dp[root]-1;
			dfs1(v);
	    }
	}
}
int main()
{
	int n;
	scanf("%d",&n);
	memset(dp,0,sizeof(dp));
	memset(vis,0,sizeof(vis));
/*	for (int i = 0;i<=n;i++)
		e.clear();*/
	for (int i = 1;i<n;i++)
	{
//		e[i].clear();
		int u,v;
		scanf("%d%d",&u,&v);
		e[u].push_back(Edge(v,0));
		e[v].push_back(Edge(u,1));
	}
    dfs(1);
	dp[1]=res;
	memset(vis,0,sizeof(vis));
	dfs1(1);
    int minx=inf;
	int pos;
	for (int i = 1;i<=n;i++)
	{
		if (minx>=dp[i])
		{
            pos = i;
			minx = dp[i];
		}
	}
	printf("%d\n",minx);
	for (int i = 1;i<=n;i++)
	{
		if (i==pos)
		{
            printf("%d\n",i);
			break;
		}
		if (minx==dp[i])
			printf("%d ",i);
	}
	//freopen("in","r",stdin);
	//scanf("%d",&T);
	//printf("time=%.3lf",(double)clock()/CLOCKS_PER_SEC);
	return 0;
}

Description

The country Treeland consists of n cities, some pairs of them are connected with unidirectional roads. Overall there are n - 1 roads in the country. We know that if we don't take the direction of the roads into consideration, we can get from any city to any other one.

The council of the elders has recently decided to choose the capital of Treeland. Of course it should be a city of this country. The council is supposed to meet in the capital and regularly move from the capital to other cities (at this stage nobody is thinking about getting back to the capital from these cities). For that reason if city a is chosen a capital, then all roads must be oriented so that if we move along them, we can get from city a to any other city. For that some roads may have to be inversed.

Help the elders to choose the capital so that they have to inverse the minimum number of roads in the country.

Input

The first input line contains integer n (2 ≤ n ≤ 2·105) — the number of cities in Treeland. Next n - 1 lines contain the descriptions of the roads, one road per line. A road is described by a pair of integers si, ti (1 ≤ si, ti ≤ nsi ≠ ti) — the numbers of cities, connected by that road. The i-th road is oriented from city si to city ti. You can consider cities in Treeland indexed from 1 to n.

Output

In the first line print the minimum number of roads to be inversed if the capital is chosen optimally. In the second line print all possible ways to choose the capital — a sequence of indexes of cities in the increasing order.

Sample Input

Input
3
2 1
2 3
Output
0
2 
Input
4
1 4
2 4
3 4
Output
2
1 2 3 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值