제출 #446359

#제출 시각아이디문제언어결과실행 시간메모리
446359dxz05Birthday gift (IZhO18_treearray)C++14
0 / 100
4085 ms4940 KiB
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>

using namespace std;

void debug_out() { cerr << endl; }

template<typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
    cerr << "[" << H << "]";
    debug_out(T...);
}

#ifdef dddxxz
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif

#define SZ(s) ((int)s.size())
#define all(x) (x).begin(), (x).end()
#define revall(x) (x).rbegin(), (x).rend()

clock_t startTime;

double getCurrentTime() {
    return (double) (clock() - startTime) / CLOCKS_PER_SEC;
}

#define MP make_pair

typedef long long ll;
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
const double eps = 0.00001;
const int MOD = 1e9 + 7;
const int INF = 1000000101;
const long long LLINF = 1223372000000000555;
const int N = 2e5 + 3e2;
const int M = 222;

vector<int> g[N];

int tin[N], tout[N], up[N][20], timer = 0;

void dfs(int v, int p){
    tin[v] = ++timer;
    up[v][0] = p;

    for (int i = 1; i < 20; i++){
        up[v][i] = up[up[v][i - 1]][i - 1];
    }

    for (int u : g[v]){
        if (u != p) dfs(u, v);
    }

    tout[v] = ++timer;
}

bool upper(int a, int b){
    return tin[a] <= tin[b] && tout[a] >= tout[b];
}

int lca(int a, int b){
    if (upper(a, b)) return a;
    if (upper(b, a)) return b;

    for (int i = 19; i >= 0; i--){
        if (!upper(up[a][i], b)) a = up[a][i];
    }

    return up[a][0];
}

int a[N];

void solve(int TC) {
    int n, m, q;
    cin >> n >> m >> q;

    for (int i = 1; i < n; i++){
        int u, v;
        cin >> u >> v;
        g[u].push_back(v);
        g[v].push_back(u);
    }

    dfs(1, 1);

    for (int i = 1; i <= m; i++) cin >> a[i];

    while (q--){
        int t;
        cin >> t;

        if (t == 1){
            int i, x;
            cin >> i >> x;
            a[i] = x;
        } else {
            int l, r, v;
            cin >> l >> r >> v;

            int ansl = -1, ansr = -1;

            for (int i = l; i <= r; i++){
                int j = i;
                int x = a[i];
                while (j <= r && upper(v, x)){
                    x = lca(x, a[j]);
                    if (x == v) ansl = i, ansr = j;
                    j++;
                }

                i = j - 1;
            }

            cout << ansl << ' ' << ansr << endl;
        }
    }

}

int main() {
    startTime = clock();
    cin.tie(nullptr); cout.tie(nullptr);
    ios_base::sync_with_stdio(false);

    bool llololcal = false;
#ifdef dddxxz
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    llololcal = true;
#endif

    int TC = 1;
    //cin >> TC;

    for (int test = 1; test <= TC; test++) {
        //debug(test);
        //cout << "Case #" << test << ": ";
        solve(test);
    }

    if (llololcal) cerr << endl << "Time: " << int(getCurrentTime() * 1000) << " ms" << endl;

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...