Problem Description
You are given a positive integer 0-indexed array nums
. A subset of the array nums
is square-free if the product of its elements is a square-free integer. A square-free integer is an integer that is divisible by no square number other than 1. Return the number of square-free non-empty subsets of the array nums
. Since the answer may be too large, return it modulo 10^9 + 7.
Key Insights
- A square-free integer does not have any prime factor with an exponent greater than 1.
- The range of input values (1 <= nums[i] <= 30) allows for efficient prime factorization.
- The problem can be approached using bit manipulation to explore subsets.
- We need to ensure that when constructing subsets, we do not include elements that will introduce square factors.
Space and Time Complexity
Time Complexity: O(n * 2^n) in the worst case, where n is the number of elements in nums
.
Space Complexity: O(n) for storing prime factorizations.
Solution
To solve the problem, we will:
- Precompute the prime factorization of each number from 1 to 30.
- Use a bitmask to represent the inclusion or exclusion of each element in
nums
. - For each subset represented by a bitmask, calculate the product of the selected elements and check if it is square-free by examining its prime factors.
- Count and return the number of valid square-free subsets modulo 10^9 + 7.