记录编号 |
449649 |
评测结果 |
AAAAAAAAAA |
题目名称 |
平凡的测试数据 |
最终得分 |
100 |
用户昵称 |
Shirry |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.634 s |
提交时间 |
2017-09-14 20:03:53 |
内存使用 |
3.72 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=300010;
int n,m,t,a,b,f[maxn],v[maxn],p[maxn];
int Find(int x){
if(f[x]==x)return x;
int f1=f[x];
f[x]=Find(f[x]);
if(f[x]!=f1)p[x]^=p[f1];
return f[x];
}
int main(){
freopen("td.in","r",stdin);
freopen("td.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)scanf("%d",&v[i]),f[i]=i,p[i]=v[i];
for(int i=1;i<=m;i++){
scanf("%d",&t);
if(t==1)scanf("%d%d",&a,&b),f[a]=b;
if(t==2){
scanf("%d",&a);
Find(a);
if(f[a]!=a)printf("%d\n",p[a]^p[f[a]]);
else printf("%d\n",p[a]);
}
}
return 0;
}