Problem Description
You are given a 2D integer array, queries. For each queries[i], where queries[i] = [ni, ki], find the number of different ways you can place positive integers into an array of size ni such that the product of the integers is ki. As the number of ways may be too large, the answer to the ith query is the number of ways modulo 10^9 + 7.
Return an integer array answer where answer.length == queries.length, and answer[i] is the answer to the ith query.
Key Insights
- The product of the integers must equal ki, and we need to fill an array of size ni.
- Each integer must be a positive divisor of ki.
- The problem can be approached using combinatorial mathematics, specifically with the use of prime factorization.
- The number of distinct arrangements can be calculated using multinomial coefficients based on the prime factor counts.
Space and Time Complexity
Time Complexity: O(q * (log(k) + n)), where q is the number of queries, k is the maximum value of ki, and n is the maximum value of ni.
Space Complexity: O(n + k), mainly for storing factorial values and results.
Solution
To solve the problem, we can use the following steps:
- Factorize ki into its prime factors and count the occurrences of each prime factor.
- For each prime factor with its count, calculate the number of ways to distribute these factors across ni positions in the array using the formula for combinations.
- Use precomputed factorial values to efficiently compute the combinations and apply modular arithmetic to handle large numbers.