1814. Count Nice Pairs in an Array
Description
You are given an array nums that consists of non-negative integers. Let us define rev(x) as the reverse of the non-negative integer x. For example, rev(123) = 321, and rev(120) = 21. A pair of indices (i, j) is nice if it satisfies all of the following conditions:
0 <= i < j < nums.lengthnums[i] + rev(nums[j]) == nums[j] + rev(nums[i])
Return the number of nice pairs of indices. Since that number can be too large, return it modulo 109 + 7.
Example 1:
Input: nums = [42,11,1,97] Output: 2 Explanation: The two pairs are: - (0,3) : 42 + rev(97) = 42 + 79 = 121, 97 + rev(42) = 97 + 24 = 121. - (1,2) : 11 + rev(1) = 11 + 1 = 12, 1 + rev(11) = 1 + 11 = 12.
Example 2:
Input: nums = [13,10,35,24,76] Output: 4
Constraints:
1 <= nums.length <= 1050 <= nums[i] <= 109
Solutions
Solution 1: Equation Transformation + Hash Table
Thinking
A nice pair satisfies \(nums[i]+rev(nums[j])=nums[j]+rev(nums[i])\). Checking every pair is \(O(n^2\log M)\). With \(n\le 10^5\) this will not pass.
Rearrangement yields \(nums[i]-rev(nums[i])=nums[j]-rev(nums[j])\). Count each difference; the answer is \(\sum C(v,2)\) over those frequencies, modulo \(10^9+7\).
For the index pair \((i, j)\), if it satisfies the condition, then we have \(nums[i] + rev(nums[j]) = nums[j] + rev(nums[i])\), which means \(nums[i] - nums[j] = rev(nums[j]) - rev(nums[i])\).
Therefore, we can use \(nums[i] - rev(nums[i])\) as the key of a hash table and count the number of occurrences of each key. Finally, we calculate the combination of values corresponding to each key, add them up, and get the final answer.
Note that we need to perform modulo operation on the answer.
The time complexity is \(O(n \times \log M)\), where \(n\) and \(M\) are the length of the \(nums\) array and the maximum value in the \(nums\) array, respectively. The space complexity is \(O(n)\).
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
Solution 2
Thinking
Solution 1 finishes the histogram first and then sums combinations, which needs a second pass. The pairs are unordered, so while scanning we can add the current count of the same difference to the answer and then increment that key, avoiding an explicit \(C(v,2)\) afterwards.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |