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
|
#include <bits/stdc++.h>
using namespace std;
const int N = 100010;
int p[N];
int find(int x){ if (p[x] != x) p[x] = find(p[x]); return p[x]; }
int main(int argc, char const *argv[]) { int n, m; cin >> n >> m;
for (int i = 1; i <= n; i ++){ p[i] = i; }
while(m --){ char op[2]; int a, b; scanf("%s%d%d", &op, &a, &b);
if (op[0] == 'M') p[find(a)] = find(b); else{ if (find(a) == find(b)) puts("Yes"); else puts("No"); }
} }
|