I hava an array of size at max 100000.
I need find all subarrays whose GCD is x .
How can I do it efficiently ? Please help ..
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Name |
---|
Key observation is to notice that gcd is monotonic. (meaning if the gcd of elements between i to j is y, then the gcd of elements i to j+1 will be <= y.)
Then for each i from 1 to n, u can binary search for the rightmost index more than i (let's say j, such that the gcd of elements between i to j is <= x), after that, binary search for the leftmost index more than i (let's say k, such that the gcd of elements between i to k is >= x).
Then the number of subarrays with gcd of x starting from i = j-k+1.
And gcd from elements between i to j can be calculated in O(1) with sparse table.
Thus resulting complexity will be n * log2(n)
A similar question can be found here: https://dunjudge.me/analysis/problems/1121/
Thank You .