Task: | Company Queries II |
Sender: | bubu2006 |
Submission time: | 2024-10-10 00:03:30 +0300 |
Language: | C++ (C++20) |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.18 s | details |
#7 | ACCEPTED | 0.14 s | details |
#8 | ACCEPTED | 0.19 s | details |
#9 | ACCEPTED | 0.16 s | details |
#10 | ACCEPTED | 0.16 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.18 s | details |
Code
#include <bits/stdc++.h>using namespace std;#define int long long#define rep(i, a, b) for(int i = a; i < (b); ++i)#define all(x) begin(x), end(x)#define sz(x) (int)(x).size()typedef long long ll;typedef pair<int, int> pii;typedef vector<int> vi;/*** Author: chilli, pajenegod* Date: 2020-02-20* License: CC0* Source: Folklore* Description: Data structure for computing lowest common ancestors in a tree* (with 0 as root). C should be an adjacency list of the tree, either directed* or undirected.* Time: $O(N \log N + Q)$* Status: stress-tested*//*** Author: Johan Sannemo, pajenegod* Date: 2015-02-06* License: CC0* Source: Folklore* Description: Range Minimum Queries on an array. Returns* min(V[a], V[a + 1], ... V[b - 1]) in constant time.* Usage:* RMQ rmq(values);* rmq.query(inclusive, exclusive);* Time: $O(|V| \log |V| + Q)$* Status: stress-tested*/template<class T>struct RMQ {vector<vector<T>> jmp;RMQ(const vector<T>& V) : jmp(1, V) {for (int pw = 1, k = 1; pw * 2 <= sz(V); pw *= 2, ++k) {jmp.emplace_back(sz(V) - pw * 2 + 1);rep(j,0,sz(jmp[k]))jmp[k][j] = min(jmp[k - 1][j], jmp[k - 1][j + pw]);}}T query(int a, int b) {assert(a < b); // or return inf if a == bint dep = 31 - __builtin_clz(b - a);return min(jmp[dep][a], jmp[dep][b - (1 << dep)]);}};struct LCA {int T = 0;vi time, path, ret;RMQ<int> rmq;LCA(vector<vi>& C) : time(sz(C)), rmq((dfs(C,0,-1), ret)) {}void dfs(vector<vi>& C, int v, int par) {time[v] = T++;for (int y : C[v]) if (y != par) {path.push_back(v), ret.push_back(time[v]);dfs(C, y, v);}}int lca(int a, int b) {if (a == b) return a;tie(a, b) = minmax(time[a], time[b]);return path[rmq.query(a, b)];}//dist(a,b){return depth[a] + depth[b] - 2*depth[lca(a,b)];}};signed main() {cin.tie(0)->sync_with_stdio(0);cin.exceptions(cin.failbit); // RTE if input wrong datatypeint n, q;cin >> n >> q;vector<vi> adj(n);rep(i, 1, n) {int p;cin >> p;p--;adj[p].push_back(i);}LCA lca(adj);while (q--) {int a, b;cin >> a >> b;a--; b--;cout << lca.lca(a, b) + 1 << '\n';}}
Test details
Test 1
Verdict: ACCEPTED
input |
---|
10 10 1 2 3 4 5 6 7 8 9 6 9 8 10 10 3 ... |
correct output |
---|
6 8 3 1 8 ... |
user output |
---|
6 8 3 1 8 ... |
Test 2
Verdict: ACCEPTED
input |
---|
10 10 1 1 1 1 1 1 1 1 1 1 7 3 4 4 1 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 ... |
Test 3
Verdict: ACCEPTED
input |
---|
10 10 1 1 1 1 2 3 4 4 1 1 8 2 7 8 3 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 ... |
Test 4
Verdict: ACCEPTED
input |
---|
10 10 1 1 3 1 2 2 5 3 9 7 2 7 6 3 9 ... |
correct output |
---|
2 2 3 1 1 ... |
user output |
---|
2 2 3 1 1 ... |
Test 5
Verdict: ACCEPTED
input |
---|
10 10 1 2 3 2 5 3 2 2 4 6 1 1 3 1 9 ... |
correct output |
---|
1 1 1 2 2 ... |
user output |
---|
1 1 1 2 2 ... |
Test 6
Verdict: ACCEPTED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
74862 8750 16237 72298 58111 ... |
user output |
---|
74862 8750 16237 72298 58111 ... Truncated |
Test 7
Verdict: ACCEPTED
input |
---|
200000 200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 ... Truncated |
Test 8
Verdict: ACCEPTED
input |
---|
200000 200000 1 2 1 2 3 2 1 6 3 1 10 12 13 4... |
correct output |
---|
1 2 2 2 1 ... |
user output |
---|
1 2 2 2 1 ... Truncated |
Test 9
Verdict: ACCEPTED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
2796 633 633 151 2690 ... |
user output |
---|
2796 633 633 151 2690 ... Truncated |
Test 10
Verdict: ACCEPTED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
365 73 103 365 216 ... |
user output |
---|
365 73 103 365 216 ... Truncated |
Test 11
Verdict: ACCEPTED
input |
---|
2 4 1 1 1 1 2 2 1 ... |
correct output |
---|
1 1 1 2 |
user output |
---|
1 1 1 2 |
Test 12
Verdict: ACCEPTED
input |
---|
200000 200000 1 1 2 3 4 5 6 7 8 9 10 11 12 1... |
correct output |
---|
27468 6353 27468 6353 6353 ... |
user output |
---|
27468 6353 27468 6353 6353 ... Truncated |