Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author: kobortor
To solve for the first subtask, it is sufficient to simply loop through each restaurant to add the coupons, then loop through to query them.
Complexity: 
To solve for the second subtask, we would use a data structure called the Binary Indexed Tree (BIT) to quickly update and query sums. Have 2 BITs, called
and
. To update the range
, we do the following.
- Add
to ![B[l]](//static.dmoj.ca/mathoid/4b9ffc9183736fd200dcfa2bf8e0675d316aaa27/svg)
- Add
to ![A[l]](//static.dmoj.ca/mathoid/a04f491b39df1696b84264d4adb7b09c95002d3b/svg)
- Add
to ![B[r+1]](//static.dmoj.ca/mathoid/054774507a9ae486162c29a84b9145212cd6ea38/svg)
- Add
to ![A[r+1]](//static.dmoj.ca/mathoid/a8bffd322c51cdabec8f9ff6dcdcb79a0610c01f/svg)
To query the sum from
to
, we get the value of
. To find the sum of a range, simply subtract the unwanted range (i.e.
to
).
This works because in the range
, our query sum would be increased by 1 for each step we take to the right. This is represented by the multiplication of the
array.
Complexity: 
To solve for the third subtask, we can use the same data structure. Note that the sum of
. Since the summation formula here is quadratic, we need a third array to store our values. Create
, and let our at
now be
. However, since we don't want to run into fractional numbers, it is best to store the sums as a multiple of
and divide afterward.
An implementation of the data structure can be found here.
Complexity: 
To solve the final subtask, we simply need to extend what we did in subtask 3. That is, find the summation formulas for
. Note that this can either be generated from polynomial differences or found by searching wolfram alpha. After we find the formulas, which will be of degree
, we simply need to store the summations times
inside
different BITs. Afterwards, query the sums as we did before and divide the value by
to get our real answer.
Complexity: 
Note that the summation formulas change depending on your starting point, so for each update at
, we are really looking to find the summation formula for the sequence 
Comments