Problem Description
You are given an array of integers nums
of length n
and a positive integer k
. The power of an array is defined as its maximum element if all of its elements are consecutive and sorted in ascending order; otherwise, it is -1. You need to find the power of all subarrays of nums
of size k
and return an integer array results
where results[i]
is the power of nums[i..(i + k - 1)]
.
Key Insights
- A subarray must have consecutive integers to have a valid power.
- The maximum element of the subarray is only valid if the elements are sorted and consecutive.
- Efficiently checking for consecutive integers can be done using a sliding window approach.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
The solution employs a sliding window technique to efficiently iterate through the array. For each subarray of size k
, we check if the elements are consecutive and sorted. This can be done by checking the minimum and maximum of the subarray and ensuring that the range of numbers matches the length of the subarray. A set can also be used to ensure all numbers are unique.