CSES - Aalto Competitive Programming 2024 - wk7 Homework - Results
Submission details
Task:Company Queries II
Sender:htoik
Submission time:2024-10-24 14:12:01 +0300
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails
#2ACCEPTED0.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.86 sdetails
#7ACCEPTED0.69 sdetails
#80.91 sdetails
#90.81 sdetails
#100.83 sdetails
#11ACCEPTED0.00 sdetails
#120.84 sdetails

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:63:18: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'ull' {aka 'long long unsigned int'} [-Wsign-compare]
   63 |     for(ll i=0; i<q; i++){
      |                 ~^~

Code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;

ll n;
ll logn;
ll d[2*200000+1];
ll f[2*200000+1];
ll e[2*(2*200000+1)];
ll didx = 0;
#define logn_max 20
ll rmq[(2*200000+1)*logn_max];
map<ll,vector<ll>> adj;

void dfs(ll a, ll di){
    d[a] = di;
    f[a] = didx;
    e[didx++] = a;
    if(adj.count(a)){
        for(auto b : adj[a]){
            dfs(b, di+1);
            e[didx++] = a;
        }
    }
}

void makermq(){
    for(ll i=0; i<didx; i++){
        rmq[i*logn_max + 0] = e[i];
    }
    for(ll j=1; (1<<j)<=didx; j++){
        for(ll i=0; i+(1<<j)<=didx; i++){
            ll l = rmq[i*logn_max + j - 1];
            ll r = rmq[(i + (1 << (j - 1)))*logn_max + (j-1)];

            ll ln = e[l];
            ll rn = e[r];

            rmq[i*logn_max + j] = d[ln] < d[rn] ? l : r;
        }
    }
}

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

    for(ll i=0; i<n-1; i++){
        ll b;
        cin >> b;
        adj[b].push_back(i+2);
    }

    // for(auto& [b,vec] : adj){
    //     sort( vec.begin(), vec.end() );
    //     vec.erase( unique( vec.begin(), vec.end() ), vec.end() );
    // }

    dfs(1, 0);
    makermq();

    for(ll i=0; i<q; i++){
        ll qa, qb;
        cin >> qa >> qb;
        if(qa == qb){
            cout << qa << endl;
            continue;
        }

        ll a = f[qa];
        ll b = f[qb];
        if(a > b) swap(a, b);

        ll l = b-a+1;
        ll k = floor(log2(l));

        ll li = rmq[a *logn_max + k];
        ll ri = rmq[(b - (1 << k) + 1) *logn_max + k];

        ll ln = e[li];
        ll rn = e[ri];
        // cout << (e[(d[ln] < d[rn]) ? li : ri] - 1) << endl;
        cout << (e[(d[ln] < d[rn]) ? li : ri]) << endl;
    }
}

Test details

Test 1

Verdict:

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
7
9
4
2
9
...

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:

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
3
1
1
2
...

Test 4

Verdict:

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

Test 5

Verdict:

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

Test 6

Verdict:

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
74863
8751
16238
72299
58112
...

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:

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

Test 9

Verdict:

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
151
151
151
152
112876
...

Test 10

Verdict:

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
34
37
488
34
490
...

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:

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