Cover the Tree——2020牛客暑期多校训练营(第二场)C题

Cover the Tree

    • 题目
    • 输入描述
    • 输出描述
    • 样例输入
    • 样例输出
    • 说明
    • 题目大意
    • 解题思路
    • AC但不是正解的代码
    • AC正解

题目地址

题目

Given an unrooted tree, you should choose the minimum number of chains that all edges in the tree are covered by at least one chain. Print the minimum number and one solution. If there are multiple solutions, print any of them.

输入描述

The first line contains one integer(1≤n≤2×10 5),denoting the size of the tree.Following n−1 lines each contains two integers u,v (1≤u

输出描述

The first line contains one integer k, denoting the minimum number of chains to cover all edges.
Following k lines each contains two integers u,v (1≤u,v≤n), denoting a chain you have chosen. Here u=v is permitted, which covers no edge.

样例输入

5
1 2
1 3
2 4
2 5

样例输出

2
2 3
4 5

说明

Cover the Tree——2020牛客暑期多校训练营(第二场)C题_第1张图片

题目大意

给定一个无根树,选择树中所有边至少被一条链覆盖的最小链数。输出最小数字和其中任何一个解决方案。

解题思路

寻找不相邻的叶子节点,匹配输出。如下图(官方题解)
Cover the Tree——2020牛客暑期多校训练营(第二场)C题_第2张图片
本题难点在于使叶子节点不相邻,如图
Cover the Tree——2020牛客暑期多校训练营(第二场)C题_第3张图片
选择(4,5)(6,7)和(4,6)(5,7)结果是不同的
Cover the Tree——2020牛客暑期多校训练营(第二场)C题_第4张图片
Cover the Tree——2020牛客暑期多校训练营(第二场)C题_第5张图片
可以发现(4,6)(5,7)合法,可是(4,5)(6,7)不合法。
此时我们可以用dfs判断在哪一个子树来求解。

AC但不是正解的代码

(可能是数据太水了)

#include
using namespace std;
int n,u,v,a[202020],ans,w,sum[202020];
int main()
{
    scanf("%d",&n);
    for(int i=1;i

AC正解

#include
using namespace std;
const int MAXN=2e5+100;
int k,ans,u,v,root=-1,flag=1,a[MAXN],du[MAXN];
vector vec[MAXN];
void DFS(int x,int fx)
{
    if(du[x]==1)
    {
        a[++ans]=x;return;
    }
    for(int i=0;i=2&&flag) root=u,flag=0;
        if(du[v]>=2&&flag) root=v,flag=0;
        vec[u].push_back(v);vec[v].push_back(u);
    }
    if(root==-1)
    {
        printf("1\n%d %d",u,v);return 0;
    }
    DFS(root,-1e9);
    printf("%d\n",(ans+1)/2);
    for(int i=1;i<=ans/2;i++) printf("%d %d\n",a[i],a[(ans+1)/2+i]);
    if(ans&1) printf("%d %d\n",root,a[ans/2+1]);
}

你可能感兴趣的:(Cover the Tree——2020牛客暑期多校训练营(第二场)C题)