比赛 |
20170912 |
评测结果 |
AAATTTTTTA |
题目名称 |
平凡的测试数据 |
最终得分 |
40 |
用户昵称 |
Shirry |
运行时间 |
6.005 s |
代码语言 |
C++ |
内存使用 |
2.58 MiB |
提交时间 |
2017-09-12 22:03:38 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=300000;
int n,m,w,t,a,b,f[maxn],v[maxn];
int Find(int x){
if(f[x]==x)return x;
return Find(f[x]);
}
int Cal(int x){
w^=v[x];
if(f[x]!=x)Cal(f[x]);
else return w;
}
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;
for(int i=1;i<=m;i++){
w=0;
scanf("%d",&t);
if(t==1)scanf("%d%d",&a,&b),f[a]=b;
else{
scanf("%d",&a),Cal(a),printf("%d\n",w);
}
}
return 0;
}