代码拉取完成,页面将自动刷新
同步操作将从 charlieshu/Algorithms 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include <iostream>
#include <math.h>
using namespace std;
int find(int *f,int *v,int x){
if(f[x] == x) return x;
int s=f[x],dif=v[s]-v[x];
f[x] = find(f,v,f[x]);
v[x] += v[s];
return f[x];
}
int main(){
int t;
int f[30005],v[30005]={0},mx[30005];
cin>>t;
for(int i=0;i<30005;i++){
f[i] = i;
mx[i] = 1;
}
for(int i=0;i<t;i++){
char comm; //ָ
int x,y; //i,j
cin>>comm>>x>>y;
x--;
y--;
int fx=find(f,v,x),fy=find(f,v,y);
if(comm == 'M'){
f[fx] = fy;
v[fx] = mx[fy];
mx[fy] += mx[fx];
mx[fx] = 0;
}
else{
if(fx == fy)
cout<<(abs(v[x]-v[y])-1)<<endl;
// int out=abs(v[x]-v[y])-1;
else
cout<<-1<<endl;
// int out=-1;
}
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。