結果

問題 No.1030 だんしんぐぱーりない
ユーザー 👑 kmjpkmjp
提出日時 2020-04-18 00:59:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 2,886 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 203,004 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-04-14 18:12:15
合計ジャッジ時間 10,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
38,456 KB
testcase_01 AC 12 ms
38,672 KB
testcase_02 AC 13 ms
40,176 KB
testcase_03 AC 13 ms
38,264 KB
testcase_04 AC 13 ms
38,832 KB
testcase_05 AC 180 ms
41,448 KB
testcase_06 AC 145 ms
41,960 KB
testcase_07 AC 113 ms
39,208 KB
testcase_08 AC 110 ms
39,696 KB
testcase_09 AC 137 ms
41,752 KB
testcase_10 AC 95 ms
39,052 KB
testcase_11 AC 187 ms
39,796 KB
testcase_12 AC 178 ms
42,248 KB
testcase_13 AC 133 ms
41,052 KB
testcase_14 AC 192 ms
40,504 KB
testcase_15 AC 124 ms
39,296 KB
testcase_16 AC 179 ms
40,300 KB
testcase_17 AC 141 ms
41,936 KB
testcase_18 AC 209 ms
41,080 KB
testcase_19 AC 141 ms
39,552 KB
testcase_20 AC 150 ms
40,044 KB
testcase_21 AC 126 ms
40,932 KB
testcase_22 AC 149 ms
40,628 KB
testcase_23 AC 179 ms
40,212 KB
testcase_24 AC 152 ms
39,836 KB
testcase_25 AC 154 ms
40,388 KB
testcase_26 AC 134 ms
38,572 KB
testcase_27 AC 149 ms
39,228 KB
testcase_28 AC 191 ms
41,768 KB
testcase_29 AC 116 ms
40,756 KB
testcase_30 AC 132 ms
41,356 KB
testcase_31 AC 143 ms
41,204 KB
testcase_32 AC 161 ms
41,040 KB
testcase_33 AC 164 ms
41,356 KB
testcase_34 AC 92 ms
40,688 KB
testcase_35 AC 238 ms
42,304 KB
testcase_36 AC 239 ms
42,676 KB
testcase_37 AC 247 ms
41,976 KB
testcase_38 AC 248 ms
42,076 KB
testcase_39 AC 245 ms
41,808 KB
testcase_40 AC 13 ms
38,484 KB
testcase_41 AC 13 ms
40,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
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 V,int NV> class SegTree_ma {
public:
	vector<V> val;
	static V const def=0;
	V comp(V l,V r){ return max(l,r);};
	
	SegTree_ma(){val=vector<V>(NV*2,def);};
	V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y
		if(r<=x || y<=l) return def;
		if(x<=l && r<=y) return val[k];
		return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
	}
	void update(int entry, V v) {
		entry += NV;
		val[entry]=v; //上書きかチェック
		while(entry>1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]);
	}
};
template<class V,int NV> class SegTree_mi {
public:
	vector<V> val;
	static V const def=1<<30;
	V comp(V l,V r){ return min(l,r);};
	
	SegTree_mi(){val=vector<V>(NV*2,def);};
	V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y
		if(r<=x || y<=l) return def;
		if(x<=l && r<=y) return val[k];
		return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
	}
	void update(int entry, V v) {
		entry += NV;
		val[entry]=v; //上書きかチェック
		while(entry>1) 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<int> E[101010];
int id;
int L[101010],R[101010],RL[101010];

SegTree_ma<int,1<<20> ma;
SegTree_mi<int,1<<20> 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<<i) bb=P[i][bb];
	for(i=19;i>=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<<C[lc]<<endl;
		}
	}
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0