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 | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | djm03178 | 152 |
7 | adamant | 152 |
9 | luogu_official | 150 |
10 | awoo | 147 |
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 .