-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdistinct_difference_array.py
More file actions
79 lines (62 loc) · 3.36 KB
/
distinct_difference_array.py
File metadata and controls
79 lines (62 loc) · 3.36 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'''
2670. Find the Distinct Difference Array
You are given a 0-indexed array nums of length n.
The distinct difference array of nums is an array diff of length n such that diff[i] is equal to the number of distinct elements
in the suffix nums[i + 1, ..., n - 1] subtracted from the number of distinct elements in the prefix nums[0, ..., i].
Return the distinct difference array of nums.
Note that nums[i, ..., j] denotes the subarray of nums starting at index i and ending at index j inclusive.
Particularly, if i > j then nums[i, ..., j] denotes an empty subarray.
Example 1:
Input: nums = [1,2,3,4,5]
Output: [-3,-1,1,3,5]
Explanation: For index i = 0, there is 1 element in the prefix and 4 distinct elements in the suffix.
Thus, diff[0] = 1 - 4 = -3.
For index i = 1, there are 2 distinct elements in the prefix and 3 distinct elements in the suffix.
Thus, diff[1] = 2 - 3 = -1.
For index i = 2, there are 3 distinct elements in the prefix and 2 distinct elements in the suffix.
Thus, diff[2] = 3 - 2 = 1.
For index i = 3, there are 4 distinct elements in the prefix and 1 distinct element in the suffix.
Thus, diff[3] = 4 - 1 = 3.
For index i = 4, there are 5 distinct elements in the prefix and no elements in the suffix.
Thus, diff[4] = 5 - 0 = 5.
Example 2:
Input: nums = [3,2,3,4,2]
Output: [-2,-1,0,2,3]
Explanation: For index i = 0, there is 1 element in the prefix and 3 distinct elements in the suffix.
Thus, diff[0] = 1 - 3 = -2.
For index i = 1, there are 2 distinct elements in the prefix and 3 distinct elements in the suffix.
Thus, diff[1] = 2 - 3 = -1.
For index i = 2, there are 2 distinct elements in the prefix and 2 distinct elements in the suffix.
Thus, diff[2] = 2 - 2 = 0.
For index i = 3, there are 3 distinct elements in the prefix and 1 distinct element in the suffix.
Thus, diff[3] = 3 - 1 = 2.
For index i = 4, there are 3 distinct elements in the prefix and no elements in the suffix.
Thus, diff[4] = 3 - 0 = 3.
Constraints:
1 <= n == nums.length <= 50
1 <= nums[i] <= 50
'''
class Solution:
def distinctDifferenceArray(self, nums: List[int]) -> List[int]:
"""
Compute and return a distinct difference array given a n-length array of numbers (nums).
diff[i] is equal to the number of distinct elements in the prefix nums[0:i] (inclusive) minus the number
of distinct elements in the suffix nums[i+1:n-1] (inclusive).
Args:
nums (List[int]): An array of length n containing integers.
Returns:
diff (List[int]): The array containing the distinct difference for each pair of subarrays.
"""
diff = [] # Distinct difference array to be returned
# Loop through each index i in range (0,n-1)
for i in range(0, len(nums)):
# get distinct elements in prefix and suffix. adding 1 to index i when getting the prefix makes
# the range of slicing inclusive, and adding 1 when getting the suffix starts the slicing from
# next index after the last one in the prefix.
prefix = set(nums[:i+1])
suffix = set(nums[i+1:])
# compute distinct difference between prefix and suffix
dist_diff = len(prefix) - len(suffix)
# append difference to array
diff.append(dist_diff)
return diff