Codeforces 292D Connected Components (并查集)

Codeforces 292D Connected Components (并查集)
题意 给出一张无向图,每次询问删去第Li--Ri 条边
求此时有多少个连通块

题解
求出一个前缀 Li 表示 加入前 i 条边时图的连通状况
以及一个后缀 Ri 表示 加入后 i 条边时图的连通状况
对于每个询问 删除 s--t 条边
只要将 L s-1 和 R t+1 合并 一下 就行了
合并 其实 就是讲 s-1 和 t+1 对应的 f[ i ] Union 一下就行了
为什么 这就相当于把前缀 i 和 后缀 i 通过一条边相连 ,两个就是连通的了
这样图就合并了

 1 #include <bits/stdc++.h>
 2 using namespace std ;
 3
 4 const int N = 511,M = 10011 ;
 5 struct bing{
 6     int i,e,f[N] ;
 7     void init()
 8     {
 9         e = 0 ;
10         for(i=0;i<N;i++) f[ i ] = i ;
11     }
12     int find(int x)
13     {
14         if(f[x]==x) return x ;
15         return f[x] = find(f[x]) ;
16     }
17     void Union(int x,int y)
18     {
19         x = find(x) ;
20         y = find(y) ;
21         if(x!=y) f[x] = y,e++ ;
22     }
23 }l[M],r[M];
24 int n,m,Q,s,t ;
25 int from[M],to[M] ;
26
27 int main()
28 {
29     scanf("%d%d",&n,&m) ;
30     for(int i=1;i<=m;i++)
31         scanf("%d%d",&from[ i ],&to[ i ]) ;
32     l[ 0 ].init() ;  r[ m+1 ].init() ;
33     for(int i=1;i<=m;i++)
34         l[ i ] = l[ i-1 ] , l[ i ].Union( from[ i ],to[ i ] ) ;
35     for(int i=m;i>=1;i--)
36         r[ i ] = r[ i+1 ] , r[ i ].Union( from[ i ],to[ i ] ) ;
37
38     scanf("%d",&Q) ;
39     while(Q--)
40     {
41         scanf("%d%d",&s,&t) ;
42         bing tmp = l[s-1] ;
43         for(int i=1;i<=n;i++) tmp.Union( l[ s-1 ].f[ i ],r[ t+1 ].f[ i ] ) ;
44         printf("%d\n",n-tmp.e) ;
45     }
46
47     return 0 ;
48 }
时间: 2024-10-17 07:43:27

Codeforces 292D Connected Components (并查集)的相关文章

codeforces 468B two set(并查集)

codeforces 468B two set(并查集)n+1 表示 B 组 n+2 表示 A 组 按照 这题的做法 应该是 如果 满足 num[ i ] a-num[ i ] 则他们同一组 但不一定 就一定是 都是 A 组 也可能都是 B 组 然而如果不满足这个条件的话,就直接加入 B组 然后如果满足 num[ i ] b-num[ i ] 则加入同一组 然后不满足就 加入 A 组 1 #include <bits/stdc++.h> 2 using namespace std ; 3 4

Codeforces 278C Learning Languages(并查集) 求连通块

Codeforces 278C Learning Languages(并查集) 求连通块 为什么最后还要getfather 一遍 比如 x 是 y 的父亲 然后你 Union(x,z) 然后 z 变成了 x 父亲 然后 y 的祖先就是错的了 题解 求一个无向图中有几个连通块 sum 特判 一下 如果 每一个人的语言都为 0 则答案为 sum 其他 答案则为 sum - 1 1 #include <bits/stdc++.h> 2 using namespace std ; 3 4 const

Codeforces Gym 100463E Spies 并查集

Spies Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100463/attachments Description In the aftermath of Canada’s annexation of Pittsburgh tensions have been pretty high between Canada and the US. You have personally been hired

CodeForces 277A Learning Languages 并查集

The "BerCorp" company has got n employees. These employees can use m approved official languages for the formal correspondence. The languages are numbered with integers from 1 to m. For each employee we have the list of languages, which he knows

Codeforces 650C Table Compression (并查集)

题意:M×N的矩阵 让你保持每行每列的大小对应关系不变,将矩阵重写,重写后的最大值最小. 思路:离散化思想+并查集,详见代码 好题! 1 #include <iostream> 2 #include <string.h> 3 #include <stdio.h> 4 #include <algorithm> 5 #include <cmath> 6 #include <cstdlib> 7 #include <bits/stdc

CodeForces 731C C - Socks 并查集

Description Arseniy is already grown-up and independent. His mother decided to leave him alone for m days and left on a vacation. She have prepared a lot of food, left some money and washed all Arseniy's clothes. Ten minutes before her leave she real

CodeForces 722C Destroying Array (并查集)

题意:给定 n 个数,然后每次破坏一个位置的数,那么剩下的连通块的和最大是多少. 析:用并查集来做,从后往前推,一开始什么也没有,如果破坏一个,那么我们就加上一个,然后判断它左右两侧是不是存在,如果存在,那么就合并起来, 然后不断最大值,因为这个最大值肯定是不递减,所以我们一直更新就好. 代码如下: #pragma comment(linker, "/STACK:1024000000,1024000000") #include <cstdio> #include <s

CodeForces 566D Restructuring Company (并查集+链表)

题意:给定 3 种操作, 第一种 1 u v 把 u 和 v 合并 第二种 2 l r 把 l - r 这一段区间合并 第三种 3 u v 判断 u 和 v 是不是在同一集合中. 析:很容易知道是用并查集来做,但是如果单纯的用并查集,肯定是要超时的,所以要用链表,如果合并了,就把链表指向, 这样就搞定了这个题. 代码如下: #pragma comment(linker, "/STACK:1024000000,1024000000") #include <cstdio> #i

Codeforces 468B Two Sets 并查集

题目大意:给出n个数,要求将n个数分配到两个集合中,集合0中的元素x,要求A-x也再0中,同理1集合. 写了几个版本,一直WA在第8组数据...最后参考下ans,写了并查集过了 学到:1.注意离散的逻辑思维,官方答案的 从条件推逆否命题 2.并查集做法:fa[find(i)]=mp[a-p[i]] ? find(a-p[i]) : find(n+2); 3.离散化然后hash的方法,用map时间还是承受得住的,写起来也简单 //#pragma comment(linker, "/STACK:10