CSES - Aalto Competitive Programming 2024 - wk7 Homework - Results
Submission details
Task:Company Queries II
Sender:Nallue
Submission time:2024-10-19 16:05:41 +0300
Language:C++ (C++11)
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#2ACCEPTED0.00 sdetails
#3ACCEPTED0.00 sdetails
#4ACCEPTED0.00 sdetails
#5ACCEPTED0.01 sdetails
#6ACCEPTED0.84 sdetails
#7ACCEPTED0.57 sdetails
#8ACCEPTED0.70 sdetails
#9ACCEPTED0.87 sdetails
#10ACCEPTED0.79 sdetails
#11ACCEPTED0.00 sdetails
#12ACCEPTED0.96 sdetails

Code

#include <iostream>
#include <vector>
using namespace std;

class CompanyHierarchy {
private:
    const int LOG = 20;  // log2(200000) ~ 17, so 20 is a safe value
    vector<vector<int>> adj;  // adjacency list for the hierarchy
    vector<vector<int>> parent;  // parent table for binary lifting
    vector<int> depth;  // depth of each employee

    // DFS to populate parent and depth arrays
    void dfs(int node, int par) {
        parent[node][0] = par;  // direct parent of node
        for (int i = 1; i < LOG; i++) {
            parent[node][i] = parent[parent[node][i-1]][i-1];
        }
        for (int child : adj[node]) {
            if (child != par) {
                depth[child] = depth[node] + 1;
                dfs(child, node);
            }
        }
    }

    // Binary lifting to find the lowest common ancestor
    int lca(int u, int v) {
        if (depth[u] < depth[v]) swap(u, v);

        int diff = depth[u] - depth[v];
        for (int i = 0; i < LOG; i++) {
            if (diff & (1 << i)) {
                u = parent[u][i];
            }
        }

        if (u == v) return u;
        for (int i = LOG - 1; i >= 0; i--) {
            if (parent[u][i] != parent[v][i]) {
                u = parent[u][i];
                v = parent[v][i];
            }
        }

        return parent[u][0]; 
    }

public:
    CompanyHierarchy(int n) {
        adj.resize(n + 1);  // employee numbers from 1 to n
        parent.assign(n + 1, vector<int>(LOG));  // binary lifting table
        depth.resize(n + 1);  // depth array
    }

    // Add an employee and their boss relationship
    void add_employee(int employee, int boss) {
        adj[boss].push_back(employee);  
    }

    // Preprocess the hierarchy starting from the general director (node 1)
    void preprocess() {
        depth[1] = 0;  
        dfs(1, 0);  
    }

    // Answer a query about the lowest common boss
    int query(int a, int b) {
        return lca(a, b);  
    }
};

int main() {
    int n, q;
    cin >> n >> q;

    // Create the company hierarchy object
    CompanyHierarchy company(n);

    // Read the hierarchy
    for (int i = 2; i <= n; i++) {
        int boss;
        cin >> boss;
        company.add_employee(i, boss);
    }

    // Preprocess to prepare for LCA queries
    company.preprocess();

    while (q--) {
        int a, b;
        cin >> a >> b;
        cout << company.query(a, b) << "\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
...

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
...