Блог пользователя manik.jain

Автор manik.jain, история, 3 года назад, По-английски

Quite a tricky problem I was stuck on trying to solve. Would appreciate some help on how to approach it.

Given an array, compute the number of subarrays with a mean = k

1 <= n <= 1e5

1 <= a[i], k <= 1e9

Thanks!

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

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

let's say dp store prefix sums.

if i<j
(dp[j]-dp[i])/(j-i)=k;
dp[j]-j*k=dp[i]-i*k;

So number of subarrays ending at j with their mean equal to k is the number of indexes who have dp[index]-index*k value equal to dp[j]-j*k.

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Thank you so much for your tip, it helped me solve the problem!

    Code for anyone who is curious
  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Shouldn't you ask the source of the problem before you tell the approach ?

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      That problem is very common, I've seen it several times in different platforms/contests.

»
3 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

Others have explained the solution pretty well, but I think there's a nicer way to think about it.

A neat trick that I only learned about a few days ago is called the 'average trick' (that's what I call it, anyway). If you want a subarray $$$b$$$ to have an average of $$$k$$$, then the sum of $$$(b_i - k)$$$ is $$$0$$$. So what you can do is subtract $$$k$$$ from every element. Then you only need to check that the sum of $$$b_i$$$ is $$$0$$$.

This is a more common and easier to understand problem. If you store the prefix sums, all you need to do is find the number of pairs with the same sum (because then the latter minus the former will be 0).

$$$\newline$$$

Implementation
  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Ahh, so when you subtract k from each element, it becomes a very standard problem (number of subarrays which sum to 0). This is incredibly elegant, thank you so much for sharing!!

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится +3 Проголосовать: не нравится

    This is a super cool trick, thanks for bringing it up!

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится +10 Проголосовать: не нравится

    I feel this too is needed Please correct if wrong: If(sum==0) ans++;