// In The Name Of God
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include <iostream>
#include <iomanip>
#include <fstream>
#include <vector>
#include <set>
#include <map>
#include <cstring>
#include <string>
#include <bitset>
#include <cmath>
#include <cassert>
#include <ctime>
#include <algorithm>
#include <sstream>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <cstdlib>
#include <cstdio>
#include <iterator>
#include <functional>
#include <unordered_set>
#include <unordered_map>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define sagyndym_seni ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
const ll N = 2e5+5, p1 = 911382323, p2 = 972663749, INF = 1e9+123;
inline int read(){
char c = getchar_unlocked();
bool minus = 0;
while (c < '0' || '9' < c){
if(c == '-'){ minus = 1;}
c = getchar_unlocked();
if(c == '-'){ minus = 1;}
}
int res = 0;
while ('0' <= c && c <= '9') {
res = (res << 3) + (res << 1) + c - '0';
c = getchar_unlocked();
}
if(minus){ res = (~res) + 1;}
return res;
}
int n, m, q, tick = 0;
int depth[N], pos[N], LOG[N], tin[N], tout[N];
pair<int, int> st[N][30];
vector<int> vec, g[N];
vector<pair<int, int>> order;
void dfs(int v, int p){
order.pb({depth[v], v});
pos[v] = sz(order)-1;
tin[v] = tick++;
for(auto to : g[v]){
if(to == p){ continue;}
depth[to] = depth[v] + 1;
dfs(to, v);
order.pb({depth[v], v});
}
tout[v] = tick++;
}
void precalc(){
LOG[1] = 0;
for(int i = 2; i < N; i++){
LOG[i] = LOG[i >> 1] + 1;
}
for(int i = 0; i < sz(order); i++){
st[i][0] = order[i];
}
for(int j = 1; j < 30; j++){
for(int i = 0; i + (1 << j) < sz(order); i++){
st[i][j] = min(st[i][j-1], st[i + (1 << (j-1))][j-1]);
}
}
}
int mn(int l, int r){
if(r < l){ swap(l, r);}
int j = LOG[r - l + 1];
pair<int, int> res = min(st[l][j], st[r - (1 << j) + 1][j]);
return res.s;
}
bool isChild(int v, int p){
return tin[p] <= tin[v] && tout[v] <= tout[p];
}
int main(){
n = read(); m = read(); q = read();
vec.resize(m);
for(int i = 1; i < n; i++){
int v = read()-1, u = read()-1;
g[v].pb(u);
g[u].pb(v);
}
for(int i = 0; i < m; i++){
vec[i] = read()-1;
}
dfs(0, 0);
precalc();
while(q--){
int tp = read();
if(tp == 1){
int pos = read()-1, v = read()-1;
vec[pos] = v;
}else{
int left = read()-1, right = read()-1, p = read()-1, l = -2, r = -2;
for(int i = left; i <= right; i++){
if(isChild(vec[i], p)){
if(l == -2){l = i;}
if(i == right || !isChild(vec[i+1], p)){
if(mn(pos[vec[l]], pos[vec[i]]) == p){ r = i; break;}
l = -2;
}
}
}
cout<<"\n"<<l+1<<" "<<r+1;
}
}
return 0;
}
//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
/* TIMUS: 292220YC*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
5760 KB |
n=5 |
2 |
Incorrect |
8 ms |
5888 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
5760 KB |
n=5 |
2 |
Incorrect |
8 ms |
5888 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
5760 KB |
n=5 |
2 |
Incorrect |
8 ms |
5888 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
5760 KB |
n=5 |
2 |
Incorrect |
8 ms |
5888 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |