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 ..
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Название |
---|
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 .