Problem Description
You are given a 0-indexed binary array nums
of length n
. nums
can be divided at index i
(where 0 <= i <= n
) into two arrays (possibly empty) nums_left
and nums_right
. The division score of an index i
is the sum of the number of 0
s in nums_left
and the number of 1
s in nums_right
. Return all distinct indices that have the highest possible division score.
Key Insights
- The division score at an index depends on the number of
0
s to the left of the index and the number of1
s to the right. - We can compute the cumulative counts of
0
s from the left and1
s from the right efficiently. - This allows us to find the maximum division score and the corresponding indices in a single pass.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we will:
- Create two arrays:
leftCount
to keep track of the cumulative number of0
s from the left andrightCount
to keep track of the cumulative number of1
s from the right. - Iterate through the
nums
array to fill these arrays. - Compute the division score for each index using values from
leftCount
andrightCount
. - Track the maximum score and collect all indices that match this score.