Problem Description
Given an integer array nums
of length n
with one dominant element, determine the minimum index i
at which you can split the array into two subarrays such that both subarrays contain the same dominant element. A dominant element is defined as an element that appears more than half the time in the array.
Key Insights
- A valid split requires both subarrays to have the same dominant element.
- The dominant element must appear more than half the time in both subarrays.
- The problem can be solved by tracking the frequency of the dominant element as we iterate through the array.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we can use a single pass through the array to count occurrences of the dominant element and determine potential split points. The strategy is to maintain a count of the dominant element in both the left and right subarrays as we iterate through the array.
- Identify the dominant element and its total count in the array.
- Iterate through the array, maintaining a count of the dominant element in the left subarray.
- For each index
i
, check if the left subarray has more than half of its elements as the dominant element and if the right subarray also meets the same condition. - If both conditions are satisfied, return the index
i
. - If no valid split exists, return -1.