Problem Description
You are given an integer array nums
. Your task is to find the number of pairs of non-empty subsequences (seq1, seq2)
of nums
that satisfy the following conditions:
- The subsequences
seq1
andseq2
are disjoint, meaning no index ofnums
is common between them. - The GCD of the elements of
seq1
is equal to the GCD of the elements ofseq2
.
Return the total number of such pairs modulo 10^9 + 7
.
Key Insights
- The GCD can be computed using the Euclidean algorithm which is efficient.
- A subsequence can be generated from a set of indices, allowing for combinatorial counting.
- The total number of subsequences of a set of size
n
is2^n - 1
(excluding the empty subsequence). - We can group subsequences by their GCD values to count valid pairs.
Space and Time Complexity
Time Complexity: O(n * max_val * log(max_val)), where n is the length of nums
and max_val is the maximum value in nums
.
Space Complexity: O(max_val), for storing the counts of subsequences based on their GCDs.
Solution
To solve the problem, we can utilize a dynamic programming approach combined with number theory concepts. We will:
- Count the occurrences of each number in the input array
nums
. - Calculate the number of subsequences for each possible GCD by iterating through each number and updating the counts of subsequences for their multiples.
- For each GCD, compute the number of valid pairs of subsequences that can be formed.
- Sum all valid pairs and return the result modulo
10^9 + 7
.