#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template class SegTree_ma { public: vector val; static V const def=0; V comp(V l,V r){ return max(l,r);}; SegTree_ma(){val=vector(NV*2,def);}; V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]); } }; template class SegTree_mi { public: vector val; static V const def=1<<30; V comp(V l,V r){ return min(l,r);}; SegTree_mi(){val=vector(NV*2,def);}; V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]); } }; int N,K,Q; int C[101010]; int A[101010]; int P[21][200005],D[200005]; vector E[101010]; int id; int L[101010],R[101010],RL[101010]; SegTree_ma ma; SegTree_mi mi; void dfs(int cur) { L[cur]=id++; RL[L[cur]]=cur; ITR(it,E[cur]) { D[*it]=D[cur]+1; P[0][*it]=cur; C[*it]=max(C[*it],C[cur]); dfs(*it); } R[cur]=id; } int lca(int a,int b) { int ret=0,i,aa=a,bb=b; if(D[aa]>D[bb]) swap(aa,bb); for(i=19;i>=0;i--) if(D[bb]-D[aa]>=1<=0;i--) if(P[i][aa]!=P[i][bb]) aa=P[i][aa], bb=P[i][bb]; return (aa==bb)?aa:P[0][aa]; // vertex } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K>>Q; FOR(i,N) cin>>C[i]; FOR(i,K) cin>>A[i], A[i]--; FOR(i,N-1) { cin>>x>>y; E[y-1].push_back(x-1); } dfs(0); FOR(i,19) FOR(x,N) P[i+1][x]=P[i][P[i][x]]; FOR(i,K) { ma.update(i,L[A[i]]); mi.update(i,L[A[i]]); } while(Q--) { cin>>i>>x>>y; if(i==1) { x--,y--; A[x]=y; ma.update(x,L[A[x]]); mi.update(x,L[A[x]]); } else { i=RL[mi.getval(x-1,y)]; j=RL[ma.getval(x-1,y)]; int lc=lca(i,j); cout<