Home >Backend Development >PHP Tutorial >Special Array II
3152. Special Array II
Difficulty: Medium
Topics: Array, Binary Search, Prefix Sum
An array is considered special if every pair of its adjacent elements contains two numbers with different parity.
You are given an array of integer nums and a 2D integer matrix queries, where for queries[i] = [fromi, toi] your task is to check that subarray1 nums[fromi..toi] is special or not.
Return an array of booleans answer such that answer[i] is true if nums[fromi..toi] is special.
Example 1:
Example 2:
Constraints:
Hint:
Solution:
We need to determine whether a subarray of nums is "special," i.e., every pair of adjacent elements in the subarray must have different parity (one must be odd, and the other must be even).
The idea is to identify all positions where adjacent elements have different parity. This will help us efficiently determine if a subarray is special by checking if the positions in the query are part of the same "special" block.
Preprocessing:
Create a binary array parity_change where each element is 1 if the adjacent elements have different parity, otherwise 0. For example:
Prefix Sum Array:
Construct a prefix sum array prefix_sum where each entry at index i represents the cumulative number of parity transitions up to that index. This helps quickly check if all pairs within a subarray have different parity.
Query Processing:
For each query [from, to], check if there is any position in the range [from, to-1] where the parity doesn't change. This can be done by checking the difference in the prefix sum values: prefix_sum[to] - prefix_sum[from].
Let's implement this solution in PHP: 3152. Special Array II
<?php /** * @param Integer[] $nums * @param Integer[][] $queries * @return Boolean[] */ function specialArray($nums, $queries) { ... ... ... /** * go to ./solution.php */ } // Example usage $nums1 = [3,4,1,2,6]; $queries1 = [[0, 4]]; print_r(specialArray($nums1, $queries1)); // [false] $nums2 = [4,3,1,6]; $queries2 = [[0, 2], [2, 3]]; print_r(specialArray($nums2, $queries2)); // [false, true] ?> <h3> Explanation: </h3> <ol> <li><p><strong>Preprocessing Parity Transitions:</strong><br> We calculate parity_change[i] = 1 if the elements nums[i] and nums[i 1] have different parity. Otherwise, we set it to 0.</p></li> <li><p><strong>Prefix Sum Array:</strong><br> The prefix_sum[i] stores the cumulative count of parity transitions from the start of the array up to index i. This allows us to compute how many transitions occurred in any subarray [from, to] in constant time using the formula:<br> </p></li> </ol> <pre class="brush:php;toolbar:false"> $transition_count = $prefix_sum[$to] - $prefix_sum[$from];
This solution efficiently handles the problem constraints with an optimized approach.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
Subarray A subarray is a contiguous sequence of elements within an array. ↩
The above is the detailed content of Special Array II. For more information, please follow other related articles on the PHP Chinese website!