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

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

    化繁为简 大巧不工
  • 相关阅读:
    php模式设计之 工厂模式
    SDK以及部署的SDK的思路
    手机用fiddler抓包开发测试
    搭建GIT服务端
    TP5.0以上数据库增加数据异常
    lnmp一键安装后的配置改动建议
    TPshop5最新版 安装 nginx 开启PATHINFO 模式资源加载路径加载失败问题,适用tp3.2PATHINFO模式REWRITE模式
    jquery写拉动条
    JS(JQ)分页 个人查看,没注释
    ecshop 分页
  • 原文地址:https://www.cnblogs.com/mpeter/p/10295797.html
Copyright © 2011-2022 走看看