Problem Description
The powerful array of a non-negative integer x is defined as the shortest sorted array of powers of two that sum up to x. Given a 2D integer matrix queries, where for queries[i] = [from_i, to_i, mod_i], you should calculate (big_nums[from_i] * big_nums[from_i + 1] * ... * big_nums[to_i]) % mod_i. Return an integer array answer such that answer[i] is the answer to the i-th query.
Key Insights
- The powerful array is derived from the binary representation of numbers, where each 1 in the binary representation corresponds to a power of two.
- big_nums is created by concatenating powerful arrays for all positive integers in ascending order.
- The potential range of indices for queries can be very large, requiring efficient calculation and storage of products.
- Modular arithmetic is necessary to handle large products and prevent overflow.
Space and Time Complexity
Time Complexity: O(n * log(m)), where n is the number of queries and m is the maximum value in the queries. Space Complexity: O(n), for storing the products of subarrays or the results of queries.
Solution
To solve the problem, we employ the following steps:
- Powerful Array Generation: For each integer from 1 upwards, generate its powerful array by examining its binary representation.
- Constructing big_nums: Continuously build the big_nums array using the powerful arrays generated.
- Processing Queries: For each query, compute the product of the required elements from big_nums, applying the modulo operation to manage large numbers.
- Return Results: Store and return the results for each query.
This approach ensures that we efficiently handle the potentially large range of inputs while leveraging properties of binary representations and modular arithmetic.