Problem Description
You are given an array arr
which consists of only zeros and ones, divide the array into three non-empty parts such that all of these parts represent the same binary value. If it is possible, return any [i, j]
with i + 1 < j
, such that the three parts have equal binary values. If it is not possible, return [-1, -1]
.
Key Insights
- The total number of
1
s in the array must be divisible by 3 for it to be possible to split it into three equal parts. - The binary values represented by the parts must match, including leading zeros.
- The split points must ensure that the sections are non-empty and the values are equal.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve this problem, we can follow these steps:
- Count the total number of
1
s in the array. If this count is not divisible by 3, return[-1, -1]
. - Identify the indices of the first, second, and third
1
from the end of the array. - Compare the segments between these indices to ensure they represent the same binary value.
- Return the indices of the splits if valid.
The approach primarily uses a single pass to count and identify positions, and then another pass to verify the segments.