Problem Description
You are given an array nums
. A split of an array nums
is beautiful if:
- The array
nums
is split into three subarrays:nums1
,nums2
, andnums3
, such thatnums
can be formed by concatenatingnums1
,nums2
, andnums3
in that order. - The subarray
nums1
is a prefix ofnums2
ORnums2
is a prefix ofnums3
.
Return the number of ways you can make this split.
Key Insights
- A valid split requires the ability to form three non-empty subarrays.
- The condition of prefixing between
nums1
,nums2
, andnums3
significantly restricts the possible combinations. - Count the occurrences of each number to facilitate valid splits by maintaining frequency counts in the subarrays.
- Utilize prefix sums to efficiently compute the number of valid splits at each potential split point.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1) (if we only consider the frequency array as fixed size due to the constraint on nums[i])
Solution
To solve the problem, we can use a two-pointer technique combined with prefix sums. We maintain a count of each number in the nums
array to determine valid splits. The key is to iterate through the possible split points and check the conditions for nums1
, nums2
, and nums3
using frequency counts.
- Count the occurrences of each number in the array.
- Iterate through the array to find potential split points.
- At each split point, check the conditions for beautiful splits and increment the count accordingly.