首页 > 代码库 > Codeforces Round #254 (Div. 2) DZY Loves Chemistry【并查集基础】
Codeforces Round #254 (Div. 2) DZY Loves Chemistry【并查集基础】
一开始不知道题意是啥意思,迟放进去反应和后放进去反应有什么区别
对于第三组数据不是很懂,为啥312,132的组合是不行的
后来发现这是一道考察并查集的题目 QAQ
怒贴代码:
1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 #include <math.h> 5 #include <iostream> 6 #include <algorithm> 7 using namespace std; 8 9 const int INF = 0x3f3f3f3f;10 11 int n, m, fa[100], x, y;12 13 int gf(int x) {14 if (fa[x] != x) fa[x] = gf(fa[x]);15 return fa[x];16 }17 18 int main() {19 scanf("%d%d", &n, &m);20 for (int i = 1; i <= n; i++) fa[i] = i;21 while (m--) {22 scanf("%d%d", &x, &y);23 fa[gf(x)] = gf(y);24 }25 long long ans = (1LL << n);26 for (int i = 1; i <= n; i++)27 if (gf(i) == i) ans /= 2;28 printf("%I64d\n", ans);29 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。