并查集

  

 

#include<iostream>
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 n,m,a,b;
    cin>>n>>m;
    for(int i=1;i<=n;i++) p[i]=i;
    char op;
    while(m--){
        cin>>op>>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;
}

 

posted @ 2023-04-18 16:13  艾鑫4646  阅读(10)  评论(0编辑  收藏  举报