无向图中的已连接组件

时间:2014-06-09 11:40:03

标签: c++ algorithm

我正确编码this问题,并使用bfs算法

在0.39秒内接受

这是我的代码

#include<iostream>
#include<vector>
#include<string.h>
#include<cstdio>
#include<queue>
using namespace std;

int main()
{
queue<int>q;
bool visited[100000];
int t,i,j,x,y;
int n,e;
cin>>t;
while(t--)
{
scanf("%d%d",&n,&e);
vector< vector<int> >G(n);
memset(visited,0,sizeof(visited));

for(i=0;i<e;i++)
{
scanf("%d%d",&x,&y);
G[x].push_back(y);
G[y].push_back(x);
}

int ans=0;
for(i=0;i<n;i++)
{
if(!visited[i])
{
q.push(i);
visited[i]=1;

while(!q.empty())
{
int p=q.front();
q.pop();
for(j=0;j<G[p].size();j++)
{
if(!visited[G[p][j]])
{
visited[G[p][j]]=1;
q.push(G[p][j]);
}
}
}
ans++;
}
}
printf("%d\n",ans);
}
}

然后我在0.15秒内检查了另一个接受的代码 我不明白他做了什么。 有些人请解释一下。

我只是明白他没有使用bfs或dfs算法。 为什么他的方法在较短的时间内被接受了。

这是他的代码

#include <iostream>
#include <vector>
#include <stdio.h>

using namespace std;

int p[100001];


int find( int a)
{
int root = a;
while ( p[a] != a) {
    a = p[a];
}
while ( root != a) {

  int root2 = p[root];
  p[root] = a;
  root = root2;
}   

return a;

}

int main()
  {
int t;

scanf("%d",&t);
while ( t-- ) {
    int n,m,a,b,q;

    scanf("%d%d",&n,&m);
    for ( int i = 0; i < n; i++) 
        p[i] = i;

    //int count = n;

    for ( int i = 0; i < m;i++) {

        scanf("%d%d",&a,&b);
        int root = find(a);
        int root2 = find(b);
        p[root2] = root;

    }
    int count = 0;
    for ( int i = 0; i < n;i++) {
        if ( p[i] == i)
          count++;

    }
    printf("%d\n",count);
}
return 0;

}

1 个答案:

答案 0 :(得分:2)

此代码使用disjoint set forest。一种非常有效的数据结构,能够执行union-find。本质上,用户有一组集合,可以执行两个操作:

  • 加入两套
  • 检查元素属于哪个集合

上面的算法也使用了一个重要的启发式方法 - 路径压缩。通常使用一个更多的启发式实现不相交集合 - 按等级联合但作者决定不使用它。