Task: | Company Queries II |
Sender: | bielaltes |
Submission time: | 2024-10-15 19:07:11 +0300 |
Language: | C++ (C++11) |
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.85 s | details |
#7 | ACCEPTED | 0.57 s | details |
#8 | ACCEPTED | 0.71 s | details |
#9 | ACCEPTED | 0.85 s | details |
#10 | ACCEPTED | 0.78 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.94 s | details |
Code
#include <iostream> #include <vector> #include <cmath> using namespace std; void dfs(int node, int parent, const vector<vector<int>>& tree, vector<int>& depth, vector<vector<int>>& up, int LOG) { up[node][0] = parent; for (int i = 1; i <= LOG; ++i) { up[node][i] = up[up[node][i - 1]][i - 1]; } for (int child : tree[node]) { if (child != parent) { depth[child] = depth[node] + 1; dfs(child, node, tree, depth, up, LOG); } } } int lca(int a, int b, const vector<int>& depth, const vector<vector<int>>& up, int LOG) { if (depth[a] < depth[b]) swap(a, b); int diff = depth[a] - depth[b]; for (int i = 0; i <= LOG; ++i) { if ((diff >> i) & 1) { a = up[a][i]; } } if (a == b) return a; for (int i = LOG; i >= 0; --i) { if (up[a][i] != up[b][i]) { a = up[a][i]; b = up[b][i]; } } return up[a][0]; } int main() { int n, q; cin >> n >> q; int LOG = log2(n) + 1; vector<vector<int>> tree(n + 1); vector<int> depth(n + 1); vector<vector<int>> up(n + 1, vector<int>(LOG + 1)); for (int i = 2; i <= n; ++i) { int boss; cin >> boss; tree[boss].push_back(i); tree[i].push_back(boss); } depth[1] = 0; dfs(1, 1, tree, depth, up, LOG); while (q--) { int a, b; cin >> a >> b; cout << lca(a, b, depth, up, LOG) << endl; } return 0; }
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |