CodeForces - 219D Choosing Capital for Treeland【树形dp*好题】

28 篇文章 0 订阅
6 篇文章 0 订阅
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 ≤ n; si ≠ 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.

Example
Input

3
2 1
2 3

Output

0
2 

Input

4
1 4
2 4
3 4

Output

2
1 2 3 

题意:给你一颗有向的树(或者可以理解为一个有向无环图),问你从任意一个节点出发,到其他所有节点要逆方向走多少条路?

思路:(我是按照一棵树写的)因为这棵树有方向的,那么对于任意节点需要有向上和向下两个方向,两遍dfs,第一遍向下处理(搜出节点向下需要的逆方向路数),第二遍从上向下更新出所有逆方向路数。状态方程:
dp[fa][0] += dp[child][0] + direction(fa,child)的真假;
dp[child][1] = dp[fa][1] + direction(fa,child)的方向;

*写这类题,画好图,构造树形结构,找(fa, child)的关系。通常都会用2~3个dp二维数组递推,向上和向下两个方向:
1. 向下遍历,向上更新(dp在dfs后)。
2. 向下遍历,向下更新(dp在dfs前)。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <cmath>
#include <queue>
using namespace std;

const int MAXN = 2 * 1e5 + 5;
int dp[MAXN][5];
int n, p1, p2;

struct node {
    int to;
    int dir; //标记方向 
};

vector<node> v[MAXN];

void dfs1(int x, int fa) { //向下遍历,向上更新
    for(int i = 0; i < v[x].size(); i++) {
        node e = v[x][i];
        if(e.to == fa) continue;
        dfs1(e.to, x);
        if(e.dir == 1) dp[x][0] += dp[e.to][0];
        else dp[x][0] += dp[e.to][0] + 1;
    }
}

void dfs2(int x, int fa) { //向下遍历,向下更新
    for(int i = 0; i < v[x].size(); i++) {
        node e = v[x][i];
        if(e.to == fa) continue;
        if(e.dir == 1) dp[e.to][1] = dp[x][1] + 1;
        else dp[e.to][1] = dp[x][1] - 1;
        dfs2(e.to, x);
    }
}

void solve() {
    int ans = 1e9;
    for(int i = 1; i <= n; i++) {
        ans = min(ans, dp[i][1]);
    }
    printf("%d\n", ans);
    bool flag = false;
    for(int i = 1; i <= n; i++) {
        if(dp[i][1] == ans) {
            if(flag) printf(" ");
            printf("%d", i);
            flag = true;
        }
    }
    printf("\n");
}

int main() {
    scanf("%d", &n);
    for(int i = 1; i < n; i++) {
        node e;
        scanf("%d %d", &p1, &p2);
        e.to = p2;
        e.dir = 1; 
        v[p1].push_back(e);
        e.to = p1;
        e.dir = -1;
        v[p2].push_back(e);
    }
    dfs1(1, -1);
    dp[1][1] += dp[1][0];
    dfs2(1, -1);
//  for(int i = 1; i <= n; i++) {
//      printf("%d -> %d -> %d\n", i, dp[i][0], dp[i][1]);
//  }
    solve();
    return 0;
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]中提到了一种树形动态规划的方法来解决CodeForces - 982C问题。在这个问题中,subtree指的是子连通块,而不是子树。为了使cnt_white - cnt_black尽可能大,可以使用两次树形动态规划来求解。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子树中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的树链所代表的子树。在第二次遍历中,需要维护一个sum变量,用于存储树链所代表的子树的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。如果ans\[u\]为正,则减去dp\[v\]就是树链所代表的子树的权值。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] 问题: CodeForces - 982C 树形DP是什么问题?如何解决? 回答: CodeForces - 982C是一个树形动态规划问题。在这个问题中,需要求解子连通块的最大权值和,使得cnt_white - cnt_black尽可能大。解决这个问题的方法是使用两次树形动态规划。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子树中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的树链所代表的子树。在第二次遍历中,需要维护一个sum变量,用于存储树链所代表的子树的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] #### 引用[.reference_title] - *1* *2* [CodeForces - 1324F Maximum White Subtree(树形dp)](https://blog.csdn.net/qq_45458915/article/details/104831678)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值