-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5405_count_triplets.py
56 lines (48 loc) · 1.29 KB
/
5405_count_triplets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'''
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: 10
Example 3:
Input: arr = [2,3]
Output: 0
Example 4:
Input: arr = [1,3,5,7,9]
Output: 3
Example 5:
Input: arr = [7,11,12,9,5,2,7,17,22]
Output: 8
Constraints:
1 <= arr.length <= 300
1 <= arr[i] <= 10^8
'''
class Solution:
def countTriplets(self, arr) -> int:
l = len(arr)
pre_xors = [0]
for i in range(l):
pre_xors.append(pre_xors[-1] ^ arr[i])
assert len(pre_xors) == l + 1
res = []
for i in range(l):
for j in range(i + 1, l):
for k in range(j, l):
if pre_xors[j] ^ pre_xors[i] == pre_xors[k+1] ^ pre_xors[j]:
res.append((i,j,k))
# print(res)
return len(res)
s = Solution()
arr = [7,11,12,9,5,2,7,17,22]
# arr = [2,3,1,6,7]
res = s.countTriplets(arr)
print(res)