数组名用size 在本地没问题,在acwing上编译不通过,保留字?
C++ 代码
#include<iostream>
#include<algorithm>
using namespace std;
const int N = 1e5 + 10;
int p[N];
int mysize[N];
int n,m;
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;
mysize[i] = 1;
}
while(m--){
char op[5];
scanf("%s", op);
if(op[0]=='C'){
int a, b;
scanf("%d%d", &a, &b);
if(find(a)==find(b))
continue;
mysize[find(b)] += mysize[find(a)];//这一句一定写在下一句前面,
//执行完下一句 find(a)
p[find(a)] = find(b);
}
else if(op[1]=='1'){
int a,b;
scanf("%d%d", &a, &b);
if(find(a)==find(b))
puts("Yes");
else
puts("No");
}
else {
int a;
scanf("%d", &a);
printf("%d\n", mysize[find(a)]);
}
}
system("pause");
return 0;
}