zoukankan      html  css  js  c++  java
  • Day4

    Ant Country consist of N towns.There are M roads connecting the towns. 

    Ant Tony,together with his friends,wants to go through every part of the country. 

    They intend to visit every road , and every road must be visited for exact one time.However,it may be a mission impossible for only one group of people.So they are trying to divide all the people into several groups,and each may start at different town.Now tony wants to know what is the least groups of ants that needs to form to achieve their goal. 

    InputInput contains multiple cases.Test cases are separated by several blank lines. Each test case starts with two integer N(1<=N<=100000),M(0<=M<=200000),indicating that there are N towns and M roads in Ant Country.Followed by M lines,each line contains two integers a,b,(1<=a,b<=N) indicating that there is a road connecting town a and town b.No two roads will be the same,and there is no road connecting the same town.OutputFor each test case ,output the least groups that needs to form to achieve their goal.Sample Input

    3 3
    1 2
    2 3
    1 3
    
    4 2
    1 2
    3 4

    Sample Output

    1
    2
    
    
            
     

    Hint

    New ~~~ Notice: if there are no road connecting one town ,tony may forget about the town.
    In sample 1,tony and his friends just form one group,they can start at either town 1,2,or 3.
    In sample 2,tony and his friends must form two group.
    

     简述:一个有回路与通路的混合图,问几笔能画完,忽略孤立点。

     思路:不打印解,就使用并查集找到每条路的"root",无向图,统计每条路上奇度数的点,队伍数 = 回路数 + 通路数(奇数点/2)

     代码如下:

    const int maxm = 100010;
    
    int degree[maxm], fa[maxm], vis[maxm], num[maxm], N, M;
    vector<int> root;
    
    void init() {
        memset(degree, 0, sizeof(degree)), memset(vis, 0, sizeof(vis)), memset(num, 0, sizeof(num));
        root.clear();
        for (int i = 1; i <= N; ++i)
            fa[i] = i;
    }
    
    int Find(int x) {
        if(x == fa[x])
            return x;
        return fa[x] = Find(fa[x]);
    }
    
    void Union(int x,int y) {
        int fx = Find(x), fy = Find(y);
        if(fx != fy)
            fa[fy] = fx;
    }
    
    int main() {
        while(scanf("%d%d",&N,&M) != EOF) {
            init();
            for (int i = 0; i < M; ++i) {
                int t1, t2;
                scanf("%d%d", &t1, &t2);
                degree[t1]++, degree[t2]++;
                Union(t1, t2);
            }
            for(int i = 1; i <= N; ++i) {
                int f = Find(i);
                if(!vis[f]) {
                    root.push_back(f);
                    vis[f] = 1;
                }
                if(degree[i] % 2) {
                    num[f]++;
                }
            }
            int sum = 0;
            for (auto i = root.begin(); i != root.end(); ++i) {
                if(degree[*i] == 0)
                    continue;
                else if (num[*i] == 0)
                    sum++;
                else if (num[*i])
                    sum += num[*i] / 2;
            }
            printf("%d
    ", sum);
        }
        return 0;
    }
    View Code

     为什么通路数是奇数点/2呢?(没学离散,后面填坑)直接画图就能证明必要性,回路也如此。

  • 相关阅读:
    苹果 macOS 安装 Source Code Pro
    C# 中代码执行 ping 操作
    WPF 中 Path 使用虚线
    查看 Java Web 开发环境软件是 32 位还是 64 位
    linux 磁盘io监控
    Linux下系统如何监控服务器硬件、操作系统、应用服务和业务
    ORA-00257: archiver error. Connect internal only, until freed 错误的处理方法
    完全卸载oracle11g步骤
    用JDBC连接SQL Server2017数据库
    oracle INS-13001 环境不满足最低要求
  • 原文地址:https://www.cnblogs.com/GRedComeT/p/11286669.html
Copyright © 2011-2022 走看看