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呢?(没学离散,后面填坑)直接画图就能证明必要性,回路也如此。

  • 相关阅读:
    UVa 10010 Where's Waldorf?
    boost 学习笔记
    C++ enum类型的一个更好的用法
    新浪面试题:删除字符串中多余的空格
    微软面试题:写程序找出二叉树的深度
    c++中sizeof的分析
    复习计划
    boost学习之 时间和日期 timer
    c++ template学习总结3
    微软面试题:反序一个单向链表
  • 原文地址:https://www.cnblogs.com/GRedComeT/p/11286669.html
Copyright © 2011-2022 走看看