并查集
1.将两个集合合并
2.询问两个元素是否在一个集合当中
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| #include <iostream> using namespace std; const int N = 100010;
int n, m; int p[N];
int find(int x){ if (p[x] != x) p[x] = find(p[x]); return p[x]; }
int main() { cin >> n >> m; for (int i = 1; i <= n; i++) p[i] = i; while(m--){ string op; cin >> op; int a, b; cin >> a >> b; if (op == "M") { p[find(a)] = find(b); } else { if (find(a) == find(b)) cout << "Yes" << endl; else cout << "No" << endl; } } return 0; }
|