Editorial for An Animal Contest 2 P5 - Koala Carnival


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Authors: sjay05, samliu12

Subtask 1

For each query from l to r, iterate riN and find the furthest left endpoint lft[i] such that all stuffed animals from lft[i] to i are unique. We take the maximum of ilft[i]+1 for all lft[i]l.

Time Complexity: O(QN2)

Subtask 2

To optimize, we use a two pointer approach to determine lft[i] for all riN in linear time, moving the right pointer backward only when a non-unique stuffed animal is reached and updating a count array accordingly.

As we did before, we take the maximum of ilft[i]+1 for all lft[i]l.

Time Complexity: O(QN)

Subtask 3

As before, we precompute lft[i] for all i (1iN). By using the monotonic property of lft, the answer for query li,ri can be found by binary searching for the rightmost index pos such that lft[pos]li. All k>pos have right endpoints higher than li. Thus, we only need the largest distinct subarray with the right endpoint in the range [ri,pos]. We can perform this query using a range tree like a Segment Tree or a Sparse Table.

Time Complexity: O((N+Q)logN)


Comments


  • 1
    zenomyth  commented on Oct. 16, 2023, 3:28 p.m.

    One doubt here: how do you search for duplicates? The only method I can think of is using map which consumes an additional log(N) time for each search.