CF-219D Choosing Capital for Treeland

2024-01-08 14:08

本文主要是介绍CF-219D Choosing Capital for Treeland,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目:

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.

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

题目大意:

一个国家由n个城市组成,这n个城市有n-1条单向道路,国家委员会决定在这n个城市中选择一个城市作为首都,作为首都的城市有一个要求,就是能通过道路到达每一个城市。所以当选择一个城市作为首都之后,就有一部分单向道路要被反转,问你选择哪些城市作为首都,需要反转的道路最少。

解题思路:

还是两边dfs。

第一个dfs求出将该结点作为首都,它的子树有多少条道路需要反转。

第二版dfs求出将该结点作为首都,它往上面走有多少条道路需要反转。

两个加起来就可以了。

通过这道题,我突然发现之前的树形DP写的有问题,如果是菊花图就会TLE,第二次的dfs没必要再去遍历兄弟节点,只需要做一个容斥就好了

#include <iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<map>
#include<queue>using namespace std;
const long long inf = 0x3f3f3f3f;
const int maxn = 200005;int n, m, k;struct Edge
{int to,nxt,tag;
} edges[maxn<<2];
int head[maxn<<2];
int tot;void addEdge(int u, int v, int tag)
{edges[tot] = Edge{v,head[u],tag};head[u] = tot++;
}int dp1[maxn]; //从该结点往下走有多少条道路需要反转
int dp2[maxn]; //从该节点往上走有多少条道路需要反转void dfs1(int u, int fa)
{dp1[u] = 0;for(int i = head[u]; ~i; i = edges[i].nxt){int v = edges[i].to;int tag = edges[i].tag;if(v==fa)continue;dfs1(v,u);dp1[u]+=tag+dp1[v];}
}
void dfs2(int u, int fa)
{for(int i = head[u]; ~i; i = edges[i].nxt){int v = edges[i].to;int tag = edges[i].tag;if(v == fa)continue;dp2[v] = dp1[u]-dp1[v]-tag+dp2[u]+(tag^1);dfs2(v,u);}
}vector<int>v1;int main()
{int n;scanf("%d", &n);int u, v;tot = 1;memset(head,-1,sizeof(head));for(int i = 1; i < n; i++){scanf("%d%d", &u, &v);addEdge(u,v,0);addEdge(v,u,1);}dfs1(1,-1);dfs2(1,0);int minn = inf;for(int i = 1; i <= n; i++){dp1[i]+=dp2[i];minn = min(minn,dp1[i]);}for(int i = 1; i <= n; i++){if(minn == dp1[i])v1.push_back(i);}printf("%d\n", minn);int len = v1.size();for(int i = 0; i < len; i++){printf("%d ", v1[i]);}printf("\n");return 0;
}

 

 

 

这篇关于CF-219D Choosing Capital for Treeland的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/583708

相关文章

cf 164 C 费用流

给你n个任务,k个机器,n个任务的起始时间,持续时间,完成任务的获利 每个机器可以完成任何一项任务,但是同一时刻只能完成一项任务,一旦某台机器在完成某项任务时,直到任务结束,这台机器都不能去做其他任务 最后问你当获利最大时,应该安排那些机器工作,即输出方案 具体建图方法: 新建源汇S T‘ 对任务按照起始时间s按升序排序 拆点: u 向 u'连一条边 容量为 1 费用为 -c,

CF 508C

点击打开链接 import java.util.Arrays;import java.util.Scanner;public class Main {public static void main(String [] args){new Solve().run() ;} }class Solve{int bit[] = new int[608] ;int l

【CF】C. Glass Carving(二分 + 树状数组 + 优先队列 + 数组计数)

这题简直蛋疼死。。。。。 A了一下午 #include<cstdio>#include<queue>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int maxn = 200005;int h,w,n;int C1[maxn],C2[maxn];int

【CF】E. Anya and Cubes(双向DFS)

根据题意的话每次递归分3种情况 一共最多25个数,时间复杂度为3^25,太大了 我们可以分2次求解第一次求一半的结果,也就是25/2 = 12,记录结果 之后利用剩余的一半求结果 s-结果 = 之前记录过的结果 就可以 时间复杂度降低为 3 ^ (n/2+1) 题目链接:http://codeforces.com/contest/525/problem/E #include<set

【CF】D. Arthur and Walls(BFS + 贪心)

D题 解题思路就是每次检查2X2的方格里是否只有一个‘*’,如果有的话这个*就需要变成‘.’,利用BFS进行遍历,入队的要求是这个点为. 一开始将所有的'.'全部加入队列,如果碰到一个'*'变成'.'就入队,判断的时候从4个方向就行判断 题目链接:http://codeforces.com/contest/525/problem/D #include<cstdio>#include<

CF#271 (Div. 2) D.(dp)

D. Flowers time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/474/problem/D We s

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi

CF #278 (Div. 2) B.(暴力枚举+推导公式+数学构造)

B. Candy Boxes time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/488/problem/B There

CF#278 (Div. 2) A.(暴力枚举)

A. Giga Tower time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/488/problem/A Giga To