結果

問題 No.1030 だんしんぐぱーりない
ユーザー autumn-eelautumn-eel
提出日時 2020-04-17 22:54:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 2,261 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 177,776 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-10-03 14:44:37
合計ジャッジ時間 9,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
20,736 KB
testcase_01 AC 9 ms
20,736 KB
testcase_02 AC 10 ms
20,736 KB
testcase_03 AC 10 ms
20,608 KB
testcase_04 AC 9 ms
20,608 KB
testcase_05 AC 177 ms
24,448 KB
testcase_06 AC 151 ms
23,552 KB
testcase_07 AC 103 ms
22,016 KB
testcase_08 AC 103 ms
22,144 KB
testcase_09 AC 140 ms
24,320 KB
testcase_10 AC 76 ms
21,248 KB
testcase_11 AC 160 ms
22,656 KB
testcase_12 AC 149 ms
23,936 KB
testcase_13 AC 125 ms
23,552 KB
testcase_14 AC 176 ms
23,552 KB
testcase_15 AC 101 ms
20,992 KB
testcase_16 AC 150 ms
23,040 KB
testcase_17 AC 140 ms
24,576 KB
testcase_18 AC 187 ms
23,680 KB
testcase_19 AC 108 ms
21,632 KB
testcase_20 AC 119 ms
22,528 KB
testcase_21 AC 125 ms
23,424 KB
testcase_22 AC 123 ms
22,656 KB
testcase_23 AC 148 ms
22,528 KB
testcase_24 AC 129 ms
21,376 KB
testcase_25 AC 140 ms
22,400 KB
testcase_26 AC 101 ms
20,864 KB
testcase_27 AC 118 ms
20,992 KB
testcase_28 AC 168 ms
23,168 KB
testcase_29 AC 111 ms
23,936 KB
testcase_30 AC 112 ms
22,912 KB
testcase_31 AC 118 ms
22,656 KB
testcase_32 AC 153 ms
23,552 KB
testcase_33 AC 151 ms
24,192 KB
testcase_34 AC 76 ms
21,248 KB
testcase_35 AC 240 ms
24,960 KB
testcase_36 AC 236 ms
25,088 KB
testcase_37 AC 232 ms
24,960 KB
testcase_38 AC 237 ms
24,960 KB
testcase_39 AC 231 ms
25,088 KB
testcase_40 AC 9 ms
20,736 KB
testcase_41 AC 10 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
typedef pair<int,int>P;

const int MOD=1000000007;
const int INF=0x3f3f3f3f;
const ll INFL=0x3f3f3f3f3f3f3f3f;
#define N (1<<18)
template<class T>
struct RMQ{
	pair<T,int>dat[2*N];
	T inf;
	function<pair<T,int>(pair<T,int>,pair<T,int>)>merge;
	RMQ(T Inf,function<pair<T,int>(pair<T,int>,pair<T,int>)>Merge){
		inf=Inf;merge=Merge;
		rep(i,2*N-1){
			dat[i].first=inf;
			if(i>=N-1)dat[i].second=i-N+1;
		}
	}
	void update(int k,T x){
		k+=N-1;
		dat[k].first=x;
		while(k){
			k=(k-1)/2;
			dat[k]=merge(dat[k*2+1],dat[k*2+2]);
		}
	}
	pair<T,int>query(int a,int b,int k=0,int l=0,int r=N){
		if(b<=l||r<=a)return make_pair(inf,-1);
		if(a<=l&&r<=b)return dat[k];
		auto lb=query(a,b,k*2+1,l,(l+r)/2);
		auto rb=query(a,b,k*2+2,(l+r)/2,r);
		return merge(lb,rb);
	}
	T getValue(int a,int b){
		return query(a,b).first;
	}
	int getIndex(int a,int b){
		return query(a,b).second;
	}
};
template<class T>
pair<T,int>RangeMax(pair<T,int>a,pair<T,int>b){
	return a.first>=b.first?a:b;
}
template<class T>
pair<T,int>RangeMin(pair<T,int>a,pair<T,int>b){
	return a.first<=b.first?a:b;
}

RMQ<int>seg1(INT_MAX,RangeMin<int>);//euler tour
RMQ<int>seg2(INT_MAX,RangeMin<int>);//euler tour id min
RMQ<int>seg3(0,RangeMax<int>);//euler tour id max

int c[200000];
vector<int>E[200000];
int d[200000];
int ans[200000];

int a[200000];

int vid[200000];
int vs[200000];
int vcnt=0;

void dfs(int v,int p,int Max){
	vid[v]=vcnt;
	vs[vcnt++]=v;
	if(p!=-1)d[v]=d[p]+1;
	Max=max(Max,c[v]);
	ans[v]=Max;
	for(int u:E[v]){
		dfs(u,v,Max);
		vs[vcnt++]=v;
	}
}

int main(){
	int n,K,q;cin>>n>>K>>q;
	rep(i,n)scanf("%d",&c[i]);
	rep(i,K)scanf("%d",&a[i]),a[i]--;
	rep(i,n-1){
		int a,b;scanf("%d%d",&a,&b);a--;b--;
		E[b].push_back(a);
	}
	dfs(0,-1,0);
	rep(i,vcnt){
		seg1.update(i,d[vs[i]]);
	}
	rep(i,K){
		seg2.update(i,vid[a[i]]);
		seg3.update(i,vid[a[i]]);
	}
	rep(i,q){
		int ty;scanf("%d",&ty);
		if(ty==1){
			int x,y;scanf("%d%d",&x,&y);x--;y--;
			seg2.update(x,vid[y]);
			seg3.update(x,vid[y]);
		}
		else{
			int l,r;scanf("%d%d",&l,&r);l--;
			int L=seg2.getValue(l,r),R=seg3.getValue(l,r);
			int id=vs[seg1.getIndex(L,R+1)];
			printf("%d\n",ans[id]);
		}
	}
}
0