Class Solution
java.lang.Object
g2701_2800.s2760_longest_even_odd_subarray_with_threshold.Solution
2760 - Longest Even Odd Subarray With Threshold.<p>Easy</p>
<p>You are given a <strong>0-indexed</strong> integer array <code>nums</code> and an integer <code>threshold</code>.</p>
<p>Find the length of the <strong>longest subarray</strong> of <code>nums</code> starting at index <code>l</code> and ending at index <code>r</code> <code>(0 <= l <= r < nums.length)</code> that satisfies the following conditions:</p>
<ul>
<li><code>nums[l] % 2 == 0</code></li>
<li>For all indices <code>i</code> in the range <code>[l, r - 1]</code>, <code>nums[i] % 2 != nums[i + 1] % 2</code></li>
<li>For all indices <code>i</code> in the range <code>[l, r]</code>, <code>nums[i] <= threshold</code></li>
</ul>
<p>Return <em>an integer denoting the length of the longest such subarray.</em></p>
<p><strong>Note:</strong> A <strong>subarray</strong> is a contiguous non-empty sequence of elements within an array.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> nums = [3,2,5,4], threshold = 5</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Explanation:</strong></p>
<p>In this example, we can select the subarray that starts at l = 1 and ends at r = 3 => [2,5,4]. This subarray satisfies the conditions.</p>
<p>Hence, the answer is the length of the subarray, 3. We can show that 3 is the maximum possible achievable length.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> nums = [1,2], threshold = 2</p>
<p><strong>Output:</strong> 1</p>
<p><strong>Explanation:</strong></p>
<p>In this example, we can select the subarray that starts at l = 1 and ends at r = 1 => [2].</p>
<p>It satisfies all the conditions and we can show that 1 is the maximum possible achievable length.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> nums = [2,3,4,5], threshold = 4</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Explanation:</strong></p>
<p>In this example, we can select the subarray that starts at l = 0 and ends at r = 2 => [2,3,4].</p>
<p>It satisfies all the conditions. Hence, the answer is the length of the subarray, 3. We can show that 3 is the maximum possible achievable length.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= nums.length <= 100</code></li>
<li><code>1 <= nums[i] <= 100</code></li>
<li><code>1 <= threshold <= 100</code></li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
longestAlternatingSubarray
public int longestAlternatingSubarray(int[] nums, int threshold)
-