zoukankan      html  css  js  c++  java
  • codeforces 920E Connected Components?

    You are given an undirected graph consisting of n vertices and  edges. Instead of giving you the edges that exist in the graph, we give you m unordered pairs (x, y) such that there is no edge between x and y, and if some pair of vertices is not listed in the input, then there is an edge between these vertices.

    You have to find the number of connected components in the graph and the size of each component. A connected component is a set of vertices X such that for every two vertices from this set there exists at least one path in the graph connecting these vertices, but adding any other vertex to X violates this rule.

    Input

    The first line contains two integers n and m (1 ≤ n ≤ 200000, ).

    Then m lines follow, each containing a pair of integers x and y (1 ≤ x, y ≤ nx ≠ y) denoting that there is no edge between x and y. Each pair is listed at most once; (x, y) and (y, x) are considered the same (so they are never listed in the same test). If some pair of vertices is not listed in the input, then there exists an edge between those vertices.

    Output

    Firstly print k — the number of connected components in this graph.

    Then print k integers — the sizes of components. You should output these integers in non-descending order.

    Example
    input
    Copy
    5 5
    1 2
    3 4
    3 2
    4 2
    2 5
    output
    2
    1 4 
    题目大意:
    对给定的一张图,求其补图的联通块个数及大小。
    用广搜,每一次枚举u的边,标记所有目标点v,然后找出所有未标记的点加入队列
    这样有点慢,考虑一个点加入了联通块,那么枚举时就不要考虑,用链表遍历
    用一个链表,这样每个点只会有几种情况
    1.已加入联通块,已经从链表删去
    2.未加入联通块,且没有边相连,进入队列,最多$O(n)$
    3.有边,那么不管,最多$O(m)$
    所以复杂度$O(n+m)$
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<cmath>
     6 #include<vector>
     7 #include<queue>
     8 using namespace std;
     9 int n,m,nxt[200001],lst[200001],ans[200001],cnt;
    10 bool vis[200001],pd[200001];
    11 queue<int>Q;
    12 vector<int>G[200001];
    13 void delet(int x)
    14 {
    15     nxt[lst[x]]=nxt[x];
    16     lst[nxt[x]]=lst[x];
    17 }
    18 int main()
    19 {int i,u,v,j;
    20     cin>>n>>m;
    21     for (i=1;i<=m;i++)
    22     {
    23         scanf("%d%d",&u,&v);
    24         G[u].push_back(v);
    25         G[v].push_back(u);
    26     }
    27     for (i=1;i<n;i++) nxt[i]=i+1,lst[i+1]=i;
    28     nxt[0]=1;
    29     for (i=1;i<=n;i++)
    30     if (vis[i]==0)
    31     {
    32         ans[++cnt]=1;vis[i]=1;
    33         Q.push(i);delet(i);
    34         while (Q.empty()==0)
    35         {
    36             int u=Q.front();
    37             Q.pop();
    38             for (j=0;j<G[u].size();j++)
    39             if (vis[G[u][j]]==0) pd[G[u][j]]=1;
    40             for (j=nxt[0];j;j=nxt[j])
    41             {
    42                 if (pd[j]==0) 
    43                 {
    44                     vis[j]=1;
    45                     ans[cnt]++;
    46                     Q.push(j);
    47                     delet(j);
    48                 }
    49                 else pd[j]=0;
    50             }
    51         }
    52     }
    53     sort(ans+1,ans+cnt+1);
    54     cout<<cnt<<endl;
    55     for (i=1;i<cnt;i++)
    56     printf("%d ",ans[i]);
    57     cout<<ans[cnt]<<endl;
    58 }
  • 相关阅读:
    LDAP个人理解
    webpack-dev-middleware 与 webpack-hot-middlware
    RFC、EMCA-262、TC-39等名词
    贝塞尔曲线
    Async/await语法糖实现(Generator)
    Promise嵌套问题/async await执行顺序
    JS对象中,在原型链上找到属性后 最终将值拷贝给原对象 而不是引用
    三列布局中 float引发的一个问题-当“非float的元素”和“float的元素”在一起的时候,如果非float元素在先,那么float的元素将受到排斥。
    05-Linux系统编程-第02天(文件系统、目录操作、dup2)
    降低30%视频码率,窄带高清技术实现揭秘
  • 原文地址:https://www.cnblogs.com/Y-E-T-I/p/8682978.html
Copyright © 2011-2022 走看看