zoukankan      html  css  js  c++  java
  • Codeforces --- 982C Cut 'em all! DFS加贪心

    题目链接:

    https://cn.vjudge.net/problem/1576783/origin

    输入输出:

    Examples
    inputCopy
    4
    2 4
    4 1
    3 1
    outputCopy
    1
    inputCopy
    3
    1 2
    1 3
    outputCopy
    -1
    inputCopy
    10
    7 1
    8 4
    8 10
    4 7
    6 5
    9 3
    3 5
    2 10
    2 5
    outputCopy
    4
    inputCopy
    2
    1 2
    outputCopy
    0
    Note
    In the first example you can remove the edge between vertices 11 and 44. The graph after that will have two connected components with two vertices in each.

    In the second example you can't remove edges in such a way that all components have even number of vertices, so the answer is −1

    题目大意:

    这道题其实题意很简单,给你一棵树,让你删边,然后得到的子树节点个数要是偶数

    而边的个数在离散数学里定义是 m = n-1, 这个在建树的时候需要注意!

    DFS的作用是统计这个节点连接的节点的个数,具体实现在代码中有注释。

    下面是AC代码:

    #include <iostream>
    #include <cstdio>
    #include <vector>
    #define pb push_back
    #include <string.h>
    
    using namespace std;
    const int MX = 1e5+10;
    int vis[MX], sum[MX];
    int n;
    vector<int> G[MX];
    
    int dfs(int x)
    {
        for(int i = 0; i < G[x].size(); ++i)
        {
            int u = G[x][i];
            if(!vis[u])
            {
                vis[u] = 1; // 经过的点先标记一下
                sum[x] += dfs(u); //沿着点DFS
                vis[u] = 0; // 回溯
            }
        }
        sum[x]++; // 经过一个点则需要加一
        return sum[x];
    }
    
    int main()
    {
        int ans = 0;
        memset(vis, 0, sizeof(vis));
        memset(sum, 0, sizeof(sum));
        scanf("%d", &n);
        for(int i = 1; i <= n-1; ++i) // 建树初始化m = n-1
        {
            int u, v;
            scanf("%d%d", &u, &v);
            G[u].pb(v);
            G[v].pb(u); // 无向图!
        }
        if(n%2) //节点为奇数则不可能都分为偶数节点的连通图
        {
            printf("-1
    ");
            return 0;
        }
        vis[1] = 1; // 初始节点的vis先标记为一
        dfs(1);
        for(int i = 1; i <= n; ++i)
        {
            //cout << sum[i] << ' ';
            if(sum[i]%2 == 0) ans++; // 节点个数为偶数则减
        }
        //cout << endl;
        printf("%d
    ", ans-1); //减一的理由是根节点节点数一定为偶数,但是其不能减。。
    }
    View Code

    如有疑问,欢迎评论指出!

    化繁为简 大巧不工
  • 相关阅读:
    IIS10保存配置文件及导入、导出、备份、还原
    centos7 根分区扩容
    mssqlserver2014安装步骤
    error:class 'socket.error' [Errno 2] No such file or directory: file: /usr/lib64/python2.7/socket.py line: 224
    Centos7安装Redis-5.0.3
    Aspose 学习笔记
    Maven学习笔记
    【web性能测试随笔】一、项目介绍及工具
    【Python学习笔记】python开发环境安装部署
    微信小程序中遮罩层滚动穿透问题(view增加一个属性解决)
  • 原文地址:https://www.cnblogs.com/mpeter/p/10295797.html
Copyright © 2011-2022 走看看