Problem Description
You are given an array nums
of non-negative integers and an integer k
. An array is called special if the bitwise OR
of all of its elements is at least k
. Return the length of the shortest special non-empty subarray of nums
, or return -1
if no special subarray exists.
Key Insights
- The bitwise OR operation accumulates bits set to 1.
- A single element can be a special subarray if it is greater than or equal to
k
. - The problem can be solved efficiently using a sliding window approach.
- The maximum length of the subarray is limited due to the constraints.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(1)
Solution
To find the shortest special subarray, we can use a nested loop to evaluate all possible subarrays within the given array. For each subarray, we compute the bitwise OR and check if it meets the condition of being at least k
. If it does, we update the minimum length found. This approach is feasible given the constraints on the size of the input.