question — Kuroni and Cowsheds
link to question — https://www.codechef.com/LTIME85A/problems/COWSHEDS
can someone please explain the solution?
I couldnt do better than Q*N basically go L to R + dsu
# | User | Rating |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 155 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
10 | djm03178 | 152 |
question — Kuroni and Cowsheds
link to question — https://www.codechef.com/LTIME85A/problems/COWSHEDS
can someone please explain the solution?
I couldnt do better than Q*N basically go L to R + dsu
Name |
---|
I couldn't solve it myself but I'll explain a solution I've heard from someone else.
Throughout all the queries combined, observe that the merging of two different sets of DSU happens N-1 times at max. Now let's look at a single query [L, R]. Let's identify all the elements getting merged as a_1, a_2, ..., a_2k, in order. As we've observed, the sum of k over all queries is less than N. These elements partition the query into 2k+1 parts, where i th part is identical to the reversed 2k+2-i th part. Instead of doing a linear search, we can just use binary search + hash (using the label of DSU) to find each of these parts in O((logN)^2). Since there are O(N+Q) such parts throughout all the queries, our final complexity is O((N+Q)(logN)^2). Code.
in your code why are you checking for the dsu merge as well?
while(l < r && dsu.merge(l, r — 1, tr))
once we get the length from where we cn start merging i.e. L + len and R — len are in same component dont we just merge till they meet?
It could be the case that there are multiple isolated merges separated by intervals which don't get merged. We have to repeat "(1) Binary search to find the maximal interval which don't get merged (2) Merge relevent elements" this two processes multiple times until we're done querying [L, R].