//#pragma optimize ("g",on)
//#pragma GCC optimize ("unroll-loops")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define int long long
#define ll long long
#define db double
#define ld long double
#define pb push_back
#define pf push_front
#define ppb pop_back()
#define ppf pop_front()
#define len(x) (int)x.size()
#define vi vector<int>
#define vpii vector<pair<int,int>>
#define vvi vector<vi>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define mii map<int,int>
#define y1 u_will_not_notice_this15
#define hash u_will_not_notice_this
#define tm (tl+tr>>1)
#define ls v<<1,tl,tm
#define rs v<<1|1,tm+1,tr
#define pii pair<int,int>
#define lb lower_bound
#define ub upper_bound
#define f first
#define s second
#define ordered_set tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>
#define str string
#define ins insert
#define elif else if
using namespace std;
using namespace __gnu_pbds;
const int maxn=2e5+5,mod=1e9+7,inf=1e18,bir=1,nol=0;
const bool TEST=0;
const str tch="+abcdefghijklmnopqrstuvwxyz",Tch="+ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const str Tuesday_15_10_24[5]={"NO\n","YES\n","-1\n","0\n","1\n"};
void at(int ok){cout<<Tuesday_15_10_24[ok];}
bool bit(int mask,int i){return ((bir<<i)&mask);}
int gcd(int a,int b){while(b){if(a>b) swap(a,b);b%=a;}return a;}
int lcm(int a,int b){return a/gcd(a,b)*b;}
int rnd(){return (rand()<<15)^rand();}
int bpm(int a,int b){a%=mod;if(b==0) return 1;if(b&1)return bpm(a,b-1)*a%mod;int x=bpm(a,b>>1);return x*x%mod;}
int bp(int a,int b){if(b==0) return 1;if(b&1)return bp(a,b-1)*a;int x=bp(a,b>>1);return x*x;}
//CODE STARTS HERE:
//don't get stuck on one aproach
int n,m,q,a[maxn],t,tin[maxn],tout[maxn],up[maxn][23];
vi g[maxn];
set<int>st[maxn],sts[maxn];
void dfs(int v=1,int p=1){
tin[v]=++t,up[v][0]=p;
for(int i=1;i<=20;i++)up[v][i]=up[up[v][i-1]][i-1];
for(auto to:g[v]){
if(to==p)continue;
dfs(to,v);
}
tout[v]=t;
}
bool f(int x,int y){
return tin[x]<=tin[y]&&tout[x]>=tout[y];
}
int lca(int a,int b){
if(f(a,b))return a;
if(f(b,a))return b;
for(int i=20;i>=0;i--)if(!f(up[a][i],b))a=up[a][i];
return up[a][0];
}
void whyareucopying(){
cin>>n>>m>>q;
for(int i=1;i<n;i++){
int x,y;cin>>x>>y;g[x].pb(y),g[y].pb(x);
}
for(int i=1;i<=m;i++)cin>>a[i];
dfs();
for(int i=1;i<n;i++)st[lca(a[i],a[i+1])].ins(i);
for(int i=1;i<=n;i++)sts[a[i]].ins(i);
while(q--){
int tp;cin>>tp;
if(tp==1){
int pos,val;cin>>pos>>val;
if(pos<n)st[lca(a[pos],a[pos+1])].erase(st[lca(a[pos],a[pos+1])].find(pos));
if(pos>1)st[lca(a[pos],a[pos-1])].erase(st[lca(a[pos],a[pos-1])].find(pos-1));
sts[a[pos]].erase(sts[a[pos]].find(pos));
a[pos]=val;
if(pos<n)st[lca(a[pos],a[pos+1])].ins(pos);
if(pos>1)st[lca(a[pos],a[pos-1])].ins(pos-1);
sts[a[pos]].ins(pos);
}
else{
int l,r,v;cin>>l>>r>>v;
if(sts[v].lb(l)!=sts[v].end()){
int x=(*sts[v].lb(l));
if(x<=r){
cout<<x<<' '<<x<<'\n';continue;
}
}
if(st[v].lb(l)==st[v].end()){
cout<<"-1 -1\n";continue;
}
int x=(*st[v].lb(l));
if(x<r)cout<<x<<' '<<x+1<<'\n';
else cout<<"-1 -1\n";
}
}
}
/*
5 4 4
1 2
3 1
3 4
5 3
4 5 2 3
2 1 3 1
1 3 5
2 3 4 5
2 1 3 1
*/
signed main(){
// freopen("txt.in","r",stdin),freopen("txt.out","w",stdout);
ios_base::sync_with_stdio(0),cin.tie(0);
srand(time(0));
int T=1;
if(TEST)cin>>T;
for(int i=1;i<=T;i++){
// cout<<"Case "<<i<<": ";
whyareucopying();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
31312 KB |
n=5 |
2 |
Correct |
5 ms |
31400 KB |
n=100 |
3 |
Correct |
6 ms |
31316 KB |
n=100 |
4 |
Correct |
6 ms |
31312 KB |
n=100 |
5 |
Correct |
5 ms |
31312 KB |
n=100 |
6 |
Correct |
6 ms |
31312 KB |
n=100 |
7 |
Correct |
6 ms |
31312 KB |
n=100 |
8 |
Correct |
6 ms |
31480 KB |
n=100 |
9 |
Correct |
6 ms |
31312 KB |
n=100 |
10 |
Correct |
5 ms |
31312 KB |
n=100 |
11 |
Correct |
5 ms |
31312 KB |
n=100 |
12 |
Correct |
5 ms |
31480 KB |
n=100 |
13 |
Correct |
5 ms |
31312 KB |
n=100 |
14 |
Correct |
6 ms |
31312 KB |
n=100 |
15 |
Correct |
5 ms |
31312 KB |
n=100 |
16 |
Correct |
6 ms |
31520 KB |
n=100 |
17 |
Correct |
6 ms |
31480 KB |
n=100 |
18 |
Correct |
6 ms |
31312 KB |
n=100 |
19 |
Correct |
6 ms |
31312 KB |
n=100 |
20 |
Correct |
6 ms |
31312 KB |
n=100 |
21 |
Correct |
5 ms |
31480 KB |
n=100 |
22 |
Correct |
6 ms |
31432 KB |
n=100 |
23 |
Correct |
5 ms |
31312 KB |
n=100 |
24 |
Correct |
5 ms |
31360 KB |
n=100 |
25 |
Correct |
5 ms |
31312 KB |
n=100 |
26 |
Runtime error |
49 ms |
63304 KB |
Execution killed with signal 6 |
27 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
31312 KB |
n=5 |
2 |
Correct |
5 ms |
31400 KB |
n=100 |
3 |
Correct |
6 ms |
31316 KB |
n=100 |
4 |
Correct |
6 ms |
31312 KB |
n=100 |
5 |
Correct |
5 ms |
31312 KB |
n=100 |
6 |
Correct |
6 ms |
31312 KB |
n=100 |
7 |
Correct |
6 ms |
31312 KB |
n=100 |
8 |
Correct |
6 ms |
31480 KB |
n=100 |
9 |
Correct |
6 ms |
31312 KB |
n=100 |
10 |
Correct |
5 ms |
31312 KB |
n=100 |
11 |
Correct |
5 ms |
31312 KB |
n=100 |
12 |
Correct |
5 ms |
31480 KB |
n=100 |
13 |
Correct |
5 ms |
31312 KB |
n=100 |
14 |
Correct |
6 ms |
31312 KB |
n=100 |
15 |
Correct |
5 ms |
31312 KB |
n=100 |
16 |
Correct |
6 ms |
31520 KB |
n=100 |
17 |
Correct |
6 ms |
31480 KB |
n=100 |
18 |
Correct |
6 ms |
31312 KB |
n=100 |
19 |
Correct |
6 ms |
31312 KB |
n=100 |
20 |
Correct |
6 ms |
31312 KB |
n=100 |
21 |
Correct |
5 ms |
31480 KB |
n=100 |
22 |
Correct |
6 ms |
31432 KB |
n=100 |
23 |
Correct |
5 ms |
31312 KB |
n=100 |
24 |
Correct |
5 ms |
31360 KB |
n=100 |
25 |
Correct |
5 ms |
31312 KB |
n=100 |
26 |
Runtime error |
49 ms |
63304 KB |
Execution killed with signal 6 |
27 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
31312 KB |
n=5 |
2 |
Correct |
5 ms |
31400 KB |
n=100 |
3 |
Correct |
6 ms |
31316 KB |
n=100 |
4 |
Correct |
6 ms |
31312 KB |
n=100 |
5 |
Correct |
5 ms |
31312 KB |
n=100 |
6 |
Correct |
6 ms |
31312 KB |
n=100 |
7 |
Correct |
6 ms |
31312 KB |
n=100 |
8 |
Correct |
6 ms |
31480 KB |
n=100 |
9 |
Correct |
6 ms |
31312 KB |
n=100 |
10 |
Correct |
5 ms |
31312 KB |
n=100 |
11 |
Correct |
5 ms |
31312 KB |
n=100 |
12 |
Correct |
5 ms |
31480 KB |
n=100 |
13 |
Correct |
5 ms |
31312 KB |
n=100 |
14 |
Correct |
6 ms |
31312 KB |
n=100 |
15 |
Correct |
5 ms |
31312 KB |
n=100 |
16 |
Correct |
6 ms |
31520 KB |
n=100 |
17 |
Correct |
6 ms |
31480 KB |
n=100 |
18 |
Correct |
6 ms |
31312 KB |
n=100 |
19 |
Correct |
6 ms |
31312 KB |
n=100 |
20 |
Correct |
6 ms |
31312 KB |
n=100 |
21 |
Correct |
5 ms |
31480 KB |
n=100 |
22 |
Correct |
6 ms |
31432 KB |
n=100 |
23 |
Correct |
5 ms |
31312 KB |
n=100 |
24 |
Correct |
5 ms |
31360 KB |
n=100 |
25 |
Correct |
5 ms |
31312 KB |
n=100 |
26 |
Runtime error |
49 ms |
63304 KB |
Execution killed with signal 6 |
27 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
31312 KB |
n=5 |
2 |
Correct |
5 ms |
31400 KB |
n=100 |
3 |
Correct |
6 ms |
31316 KB |
n=100 |
4 |
Correct |
6 ms |
31312 KB |
n=100 |
5 |
Correct |
5 ms |
31312 KB |
n=100 |
6 |
Correct |
6 ms |
31312 KB |
n=100 |
7 |
Correct |
6 ms |
31312 KB |
n=100 |
8 |
Correct |
6 ms |
31480 KB |
n=100 |
9 |
Correct |
6 ms |
31312 KB |
n=100 |
10 |
Correct |
5 ms |
31312 KB |
n=100 |
11 |
Correct |
5 ms |
31312 KB |
n=100 |
12 |
Correct |
5 ms |
31480 KB |
n=100 |
13 |
Correct |
5 ms |
31312 KB |
n=100 |
14 |
Correct |
6 ms |
31312 KB |
n=100 |
15 |
Correct |
5 ms |
31312 KB |
n=100 |
16 |
Correct |
6 ms |
31520 KB |
n=100 |
17 |
Correct |
6 ms |
31480 KB |
n=100 |
18 |
Correct |
6 ms |
31312 KB |
n=100 |
19 |
Correct |
6 ms |
31312 KB |
n=100 |
20 |
Correct |
6 ms |
31312 KB |
n=100 |
21 |
Correct |
5 ms |
31480 KB |
n=100 |
22 |
Correct |
6 ms |
31432 KB |
n=100 |
23 |
Correct |
5 ms |
31312 KB |
n=100 |
24 |
Correct |
5 ms |
31360 KB |
n=100 |
25 |
Correct |
5 ms |
31312 KB |
n=100 |
26 |
Runtime error |
49 ms |
63304 KB |
Execution killed with signal 6 |
27 |
Halted |
0 ms |
0 KB |
- |