1442. Count Triplets That Can Form Two Arrays of Equal XOR
Description
Given an array of integers arr.
We want to select three indices i, j and k where (0 <= i < j <= k < arr.length).
Let's define a and b as follows:
a = arr[i] ^ arr[i + 1] ^ ... ^ arr[j - 1]b = arr[j] ^ arr[j + 1] ^ ... ^ arr[k]
Note that ^ denotes the bitwise-xor operation.
Return the number of triplets (i, j and k) Where a == b.
Example 1:
Input: arr = [2,3,1,6,7]
Output: 4
Explanation: The triplets are (0,1,2), (0,2,2), (2,3,4) and (2,4,4)Example 2:
Input: arr = [1,1,1,1,1]
Output: 10Constraints:
1 <= arr.length <= 3001 <= arr[i] <= 10^8
Tags
Array, Math, Bit Manipulation
Solution
Solution 1:
This problem is equivalent to "search for a sub-array whose elements XOR = 0", since . Thus, we can build a prefix-xor array first, then traverse this array with O(n^2) complexity to find all sub-arrays of length x whose xor is 0, and add x-1 onto the result counter.
Solution 2:
We can use hash tables to avoid to find i to save time. Based on the observation that , we apply 2 hash tables to record both times of occurrence of a certain prefix-xor, and the sum of indices i, which is equal to k.
Complexity
Solution 1:
Time complexity:
Space complexity:
Solution 2:
Time complexity:
Space complexity:
Code
Solution 1:
Solution 2:
Reference
Last updated
Was this helpful?