Problem Description
You are given 2 integer arrays nums1
and nums2
of lengths n
and m
respectively. You are also given a positive integer k
. A pair (i, j)
is called good if nums1[i]
is divisible by nums2[j] * k
. Return the total number of good pairs.
Key Insights
- A good pair satisfies the condition
nums1[i] % (nums2[j] * k) == 0
. - The problem involves checking divisibility for each element in
nums1
against each modified element innums2
. - Efficient counting can be achieved by using a hash map to precompute the values of
nums2[j] * k
.
Space and Time Complexity
Time Complexity: O(n * m)
Space Complexity: O(m)
Solution
To solve the problem, we will use a hash map to store the counts of each possible value of nums2[j] * k
. This allows us to quickly determine how many elements in nums2
can divide each element in nums1
. For each element in nums1
, we will check how many times it is divisible by the values stored in the hash map.
- Create a hash map to store the frequency of each value of
nums2[j] * k
. - Iterate through
nums1
and for each element, calculate how many times it can be divided by the values in the hash map. - Sum the counts to get the total number of good pairs.