Блог пользователя Polar_

Автор Polar_, история, 5 лет назад, По-английски

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 ..

  • Проголосовать: нравится
  • +13
  • Проголосовать: не нравится

»
5 лет назад, # |
Rev. 4   Проголосовать: нравится +24 Проголосовать: не нравится

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/