并查集 atcoder D - 連結 / Connectivity

本文介绍了一种使用并查集解决的问题,具体为计算通过公路和铁路两种方式都能相互到达的城市数量。文章详细解释了并查集的实现过程,并提供了一个高效的解决方案,利用pair和make_pair来优化代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Time limit : 2sec / Memory limit : 256MB

Score : 400 points

Problem Statement

There are N cities. There are also K roads and L railways, extending between the cities. The i-th road bidirectionally connects the pi-th and qi-th cities, and the i-th railway bidirectionally connects the ri-th and si-th cities. No two roads connect the same pair of cities. Similarly, no two railways connect the same pair of cities.

We will say city A and B are connected by roads if city B is reachable from city A by traversing some number of roads. Here, any city is considered to be connected to itself by roads. We will also define connectivity by railways similarly.

For each city, find the number of the cities connected to that city by both roads and railways.

Constraints

  • 2≦N≦2*105
  • 1≦K,L≦105
  • 1≦pi,qi,ri,siN
  • pi<qi
  • ri<si
  • When ij, (pi,qi)≠(pj,qj)
  • When ij, (ri,si)≠(rj,sj)

Input

The input is given from Standard Input in the following format:

N K L
p1 q1
:
pK qK
r1 s1
:
rL sL

Output

Print N integers. The i-th of them should represent the number of the cities connected to the i-th city by both roads and railways.


Sample Input 1

Copy

4 3 1
1 2
2 3
3 4
2 3

Sample Output 1

Copy

1 2 2 1

All the four cities are connected to each other by roads.

By railways, only the second and third cities are connected. Thus, the answers for the cities are 1,2,2and 1, respectively.


Sample Input 2

Copy

4 2 2
1 2
2 3
1 4
2 3

Sample Output 2

Copy

1 2 2 1

Sample Input 3

Copy

7 4 4
1 2
2 3
2 5
6 7
3 5
4 5
3 4
6 7

Sample Output 3

Copy

1 1 2 1 2 2 2

原题链接

大意:有公路和铁路两种路,分别给出两种路链接了哪些城市,然后问对于每个城市,可以通过公路铁路两种路都能到达的城市有哪些,包括自身。

解析:被可以包括自身这一点坑到了,然后去查了题解。其实是一道挺简单的并查集,就是在得到公路铁路分别的并查集之后求交集就可以,但是查题解的时候看到了一个不错的操作,就是利用pair和make_pair来写map[代码53行往后]

代码如下

#include<iostream>
#include<cstdio>
#include<map>
#include<sstream>
#include<cstring>
#include<algorithm>
#include<string>
using namespace std;
const int maxn = 2e5+7;
int a[maxn];
int p[maxn],q[maxn],r[maxn];
int found1(int x)
{
    return x==p[x]?x : p[x] = found1(p[x]);
}
int found2(int x)
{
    return x==q[x]?x : q[x] = found2(q[x]);
}
int main()
{
    int n,l,k;
    cin >> n >> k >> l;
    int a,b;
    for(int i = 0; i < n; i ++)
    {
        p[i] = i;
        q[i] = i;
    }
    for(int i = 0; i < k; i ++)
    {
        scanf("%d%d",&a,&b);
        int x = found1(a),y = found1(b);
        if(x!=y)
        {
            p[x] = y;
        }
    }
    for(int i = 0; i < l; i ++)
    {
        scanf("%d%d",&a,&b);
        int x = found2(a),y = found2(b);
        if(x!=y)
        {
            q[x] = y;
        }
    }
    for(int i = 1; i <= n; i ++)
    {
        found1(i);
        found2(i);
    }
    map<pair<int,int>,int>mp;
    for(int i = 1; i <= n; i ++)
    {
        mp[make_pair(p[i],q[i])]++;
    }
    for(int i = 1; i <= n; i ++)
    {
        cout << mp[make_pair(p[i],q[i])] << " ";
    }
    cout <<endl;
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值