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:
- Input: nums = [3,4,1,2,6], queries = [[0,4]]
- Output: [false]
-
Explanation: The subarray is
[3,4,1,2,6]
.2
and6
are both even.
Example 2:
- Input: nums = [4,3,1,6], queries = [[0,2],[2,3]]
- Output: [false,true]
- Explanation:
- The subarray is
[4,3,1]
.3
and1
are both odd. So the answer to this query isfalse
. - The subarray is
[1,6]
. There is only one pair:(1,6)
and it contains numbers with different parity. So the answer to this query istrue
.
Constraints:
1 <= nums.length <= 105
1 <= nums[i] <= 105
1 <= queries.length <= 105
queries[i].length == 2
0 <= queries[i][0] <= queries[i][1] <= nums.length - 1
Hint:
- Try to split the array into some non-intersected continuous special subarrays.
- For each query check that the first and the last elements of that query are in the same subarray or not.
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).
Approach:
-
Identify Parity Transitions:
We can preprocess the array to mark positions where the parity changes. For example:
-
0
represents an even number. -
1
represents an odd number.
-
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 arrayparity_change
where each element is1
if the adjacent elements have different parity, otherwise0
. For example:- If
nums[i]
andnums[i+1]
have different parity, setparity_change[i] = 1
, otherwise0
.
- If
Prefix Sum Array:
Construct a prefix sum arrayprefix_sum
where each entry at indexi
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]
?>
Explanation:
Preprocessing Parity Transitions:
We calculateparity_change[i] = 1
if the elementsnums[i]
andnums[i+1]
have different parity. Otherwise, we set it to0
.Prefix Sum Array:
Theprefix_sum[i]
stores the cumulative count of parity transitions from the start of the array up to indexi
. This allows us to compute how many transitions occurred in any subarray[from, to]
in constant time using the formula:
$transition_count = $prefix_sum[$to] - $prefix_sum[$from];
-
Query Evaluation:
For each query, if the number of transitions is equal to the length of the subarray minus 1, the subarray is special, and we return
true
. Otherwise, we returnfalse
.
Time Complexity:
- Preprocessing the parity transitions takes O(n).
- Constructing the prefix sum array takes O(n).
- Each query can be answered in O(1) using the prefix sum array.
- Hence, the total time complexity is O(n + q), where
n
is the length of the array andq
is the number of queries.
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
. ↩
Top comments (0)