Problem Description
Given a 0-indexed integer array nums of length n and an integer k, return the number of pairs (i, j) such that:
- 0 <= i < j <= n - 1
- nums[i] * nums[j] is divisible by k.
Key Insights
- A product is divisible by k if at least one of the numbers in the product has a factor that complements the other to make it divisible by k.
- We can utilize the modulo operation to categorize numbers based on their remainders when divided by k.
- For each number, we can determine how many numbers can pair with it to form a product that is divisible by k.
Space and Time Complexity
Time Complexity: O(n + k)
Space Complexity: O(k)
Solution
To solve this problem, we will follow these steps:
- Create a frequency array to store the count of each remainder when the numbers in nums are divided by k.
- Iterate through the nums array and for each number, calculate its remainder.
- For each remainder, find the complement remainder that would make the product divisible by k.
- Count valid pairs using the frequency array and ensure not to double count pairs.
- Return the total count of valid pairs.