#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include // #include // #include // #include // using namespace __gnu_pbds; // #include // namespace multiprecisioninteger = boost::multiprecision; // using cint=multiprecisioninteger::cpp_int; using namespace std; using ll=long long; using datas=pair; using ddatas=pair; using tdata=pair; using vec=vector; using mat=vector; using pvec=vector; using pmat=vector; // using llset=tree,rb_tree_tag,tree_order_statistics_node_update>; #define For(i,a,b) for(i=a;i<(ll)b;++i) #define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i) #define rep(i,N) For(i,0,N) #define rep1(i,N) For(i,1,N) #define brep(i,N) bFor(i,N,0) #define brep1(i,N) bFor(i,N,1) #define all(v) (v).begin(),(v).end() #define allr(v) (v).rbegin(),(v).rend() #define vsort(v) sort(all(v)) #define vrsort(v) sort(allr(v)) #define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end()) #define endl "\n" #define popcount __builtin_popcountll #define eb emplace_back #define print(x) cout< ostream& operator<<(ostream& os,const pair& p){return os<<"("< ostream& operator<<(ostream& os,const vector& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const set& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const multiset& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const map& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< inline bool chmax(T& a,const T b){bool x=a inline bool chmin(T& a,const T b){bool x=a>b;if(x)a=b;return x;} #ifdef DEBUG void debugg(){cout<void debugg(const T& x,const Args&... args){cout<<" "<size;--i)modncrlistm[i-1]=modncrlistm[i]*i%mod; } return modncrlistp[n]*modncrlistm[r]%mod*modncrlistm[n-r]%mod; } ll modpow(ll a,ll n,const ll m=mod){ if(n<0)return 0; ll res=1; while(n>0){ if(n&1)res=res*a%m; a=a*a%m; n>>=1; } return res; } constexpr ll gcd(const ll a,const ll b) noexcept{return (!b)?abs(a):(a%b==0)?abs(b):gcd(b,a%b);} constexpr ll lcm(const ll a,const ll b) noexcept{return a/gcd(a,b)*b;} struct unionfind{ private: int maxN; vector par,treesize; public:unionfind(int N) :maxN(N),par(N),treesize(N,1){ for(int i=0;itreesize[y])swap(x,y); par[x]=y; treesize[y]+=treesize[x]; return true; } bool unite(pair v){ return unite(v.first,v.second); } bool parcheck(int x,int y){ return root(x)==root(y); } bool parcheck(pair v){ return parcheck(v.first,v.second); } int size(int x){ return treesize[root(x)]; } void clear(){ treesize.assign(maxN,1); for(int i=0;i> groups(){ vector> res(maxN); for(int i=0;i> res2; for(vector x:res){ if(x.size())res2.eb(x); } return res2; } }; template struct segtree{ private: int N=1; T E; using func=function; func f,g; vector tree; public: segtree(){} segtree(vector& v,T e,func Merge,func Act):E(e),f(Merge),g(Act){ int i,K=v.size(); while(N& v,T e,func Merge){*this=segtree(v,e,Merge,Merge);}; segtree(int N,T e,func F){ vector res(N,e); *this=segtree(res,e,F); } void action(int i,T a){ if((i<0)|(i>=N))return; i|=N; tree[i]=g(tree[i],a); while(i>1){ i>>=1; tree[i]=f(tree[i<<1],tree[(i<<1)|1]); } } void input(int i,T a){ if((i<0)|(i>=N))return; tree[i|=N]=a; while(i>1){ i>>=1; tree[i]=f(tree[i<<1],tree[(i<<1)|1]); } } T prod(int a,int b){ if((a>=b)|(a<0)|(b<=0)|(a>=N)|(b>N))return E; T l(E),r(E); for(a|=N,b+=N;a>=1,b>>=1){ if(a&1)l=f(l,tree[a++]); if(b&1)r=f(tree[--b],r); } return f(l,r); } }; struct HLD{ private: //無向木であること! vector> g; int fdfs(int now,int p){ int d=0; par[now]=p; for(size_t i=0;i+1 par,nxt,in,out,ETlist; HLD(vector> G,int first=0):g(G),par(G.size()),nxt(G.size()),in(G.size()),out(G.size()){ ETlist.reserve(G.size()); init(first); }; HLD(int N):g(N),par(N),nxt(N),in(N),out(N){ETlist.reserve(N);}; void add_edge(int a,int b){ g[a].emplace_back(b); g[b].emplace_back(a); } void init(int first=0){ { int d=0;par[first]=-1; for(auto& x:g[first])if(chmax(d,fdfs(x,first)))swap(x,g[first][0]); } nxt[first]=first; sdfs(first); } int lca(int a,int b){ if(in[a]>in[b])swap(a,b); if(nxt[a]==nxt[b])return a; return lca(a,par[nxt[b]]); } }; int main(){ startupcpp(); ll i,a,b,N,Q; cin>>N>>Q; vec c(N); rep(i,N)cin>>c[i]; HLD tree(N); rep1(i,N){ cin>>a>>b; tree.add_edge(--a,--b); } tree.init(); { auto& ch=tree.ETlist; debug(ch); vec sc(N); rep(i,N)sc[i]=c[ch[i]]; swap(c,sc); } segtree seg(c,0LL,[](ll a,ll b){return a^b;}); while(Q--){ cin>>i>>a>>b; --a; if(i==1)seg.action(tree.in[a],b); else print(seg.prod(tree.in[a],tree.out[a])); } }