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: Sucram314
It is highly encouraged for you to attempt the problem first, and only use this editorial if you are completely stuck. You'd be surprised how far you can get with sheer persistence!
Note: You should read a previous hint before a later one so as to not miss any definitions or important details.
Subtask 1
Hint 1
Do we really have to multiply numbers? Is there a better way to count the number of trailing zeroes in a product of integers?
Hint 1 Answer
The number of trailing zeroes in a positive integer
is maximum
such that
divides
evenly. The number
can be split into its prime factors,
and
, so
is the minimum of the exponents on
and
in the prime factorization of
.
We can write this more compactly with p-adic valuation as
. Using the property that
, the number of leading zeroes in the product of the subarray from index
to
is
To precompute the values of
and
for all
, we can use a while loop that counts the number of times we can divide
by
until it is no longer divisible by
, and a similar while loop for
. The maximum number of times that this while loop will run for a single number is given by
, so speed is not a concern.
Hint 2
Is there a faster way to find the sum of
and
in a subarray without looping through it?
Hint 2 Answer
After precomputing
and
for all
, we can use prefix sum arrays to find the sum of
or
in a subarray in
time.
Implementation
First, we precompute
and
for all
. Since
in this subtask, looping through all subarrays is feasible. We can use prefix sum arrays to quickly calculate the sums of
and
in each subarray and take the minimum out of the two.
More formally, define
and
, and
. Thus,
and
are the prefix sum arrays of
and
, respectively. The answer is given by
Time Complexity: 
Subtask 2
Hint 1
The
function in our sum is difficult to optimize. Is there way to break
into two pieces which are easier to calculate?
Hint 1 Answer
The
function can be broken into two pieces:
Thus, we can rewrite our desired sum into two separate sums:
![\displaystyle
\begin{align*}
& \sum_{0 \le l < r \le N}\min(c_2[r] - c_2[l], c_5[r] - c_5[l]) \\
\\
= & \sum_{0 \le l < r \le N} \frac{1}{2}\bigg(\big(c_2[r] - c_2[l] + c_5[r] - c_5[l]\big) - \Big|\big(c_2[r] - c_2[l]\big) - \big(c_5[r] - c_5[l]\big)\Big|\bigg) \\
\\
= & \frac{1}{2} \left[\left(\sum_{0 \le l < r \le N} c_2[r] - c_2[l] + c_5[r] - c_5[l]\right) - \left(\sum_{0 \le l < r \le N} \Big|\big(c_2[r] - c_2[l]\big) - \big(c_5[r] - c_5[l]\big)\Big|\right)\right]
\end{align*}](//static.dmoj.ca/mathoid/7119c19a009f273d830b9e9c2b9b4dc2a69420e8/svg)
Hint 2
Group the terms in the first sum by index:
How many times do the contributions from a certain index
get added (or subtracted) in this sum? Can we use this to get rid of the summation through pairs
?
Hint 2 Answer
We can define a single contribution from index
to be
. We can consider two cases, one where
is the "
" in the sum, and one where
is the "
".
Every time
is the right endpoint in the sum,
, its contribution is added to the sum. The number of times this happens is the number of possible
which could have their corresponding
equal to
, which is
. Thus, the total contribution from this case is
.
Every time
is the left endpoint in the sum,
, its contribution is subtracted from the sum. The number of times this happens is the number of possible
which could have their corresponding
equal to
, which is
. Thus, the total contribution from this case is
.
Adding these together to find the total contribution of index
, we get
This gives us a neat expression for the contribution of a certain index
to the sum. We can rewrite the sum over indices
instead of pairs
now:
![\displaystyle
\begin{align*}
& \sum_{0 \le l < r \le N} c_2[r] - c_2[l] + c_5[r] - c_5[l] \\
\\
= & \sum_{i=0}^N \big(c_2[i] + c_5[i]\big) \cdot (2i - N)
\end{align*}](//static.dmoj.ca/mathoid/22495da56eede082c7e7ae2f7cee0be93b8f18ae/svg)
Hint 3
The absolute value bars in our second sum are difficult to optimize. However, remember that
. What does this mean we can do to our sum to make it easier to calculate?
Hint 3 Answer
Again, we group terms by index.
Since
, swapping two adjacent indices
and
would have no effect on the sum. Swapping two adjacent indices can be done repeatedly to slowly transform the array into any permutation we want, and the sum will still be the same.
Thus, we can sort the indices by
and be sure that
, which allows us to completely remove the absolute value bars from our sum.
More formally, define
as a permutation of
that is sorted by
.
Finally, we can optimize the calculation of this sum with the same trick used for the other piece of the original sum.
Implementation
Again, we precompute
and
for all
, and build prefix sum arrays,
and
, so that
and
, and
.
Then, we can create two arrays,
and
. Sort
in ascending order.
The answer is given by
Time Complexity: 
Comments