2344. Minimum Deletions to Make Array Divisible
Description
You are given two positive integer arrays nums and numsDivide. You can delete any number of elements from nums.
Return the minimum number of deletions such that the smallest element in nums divides all the elements of numsDivide. If this is not possible, return -1.
Note that an integer x divides y if y % x == 0.
Example 1:
Input: nums = [2,3,2,4,3], numsDivide = [9,6,9,3,15] Output: 2 Explanation: The smallest element in [2,3,2,4,3] is 2, which does not divide all the elements of numsDivide. We use 2 deletions to delete the elements in nums that are equal to 2 which makes nums = [3,4,3]. The smallest element in [3,4,3] is 3, which divides all the elements of numsDivide. It can be shown that 2 is the minimum number of deletions needed.
Example 2:
Input: nums = [4,3,6], numsDivide = [8,2,6,10] Output: -1 Explanation: We want the smallest element in nums to divide all the elements of numsDivide. There is no way to delete elements from nums to allow this.
Constraints:
1 <= nums.length, numsDivide.length <= 1051 <= nums[i], numsDivide[i] <= 109
Solutions
Solution 1: Math + Sorting
Thinking
After deletions the remaining minimum must divide every entry of \(numsDivide\), hence it is a divisor of \(x=\gcd(numsDivide)\). \(n\) can be \(10^5\).
Compute \(x\), sort \(nums\), and return the index of the first divisor of \(x\). If none exists, the answer is \(-1\).
If an element can divide every value in numsDivide, it is a divisor of their GCD \(x\). Compute \(x\), sort nums, and return the index of the first divisor of \(x\).
The time complexity is \(O(m + \log M + n \times \log n)\), where \(n\) and \(m\) are the lengths of nums and numsDivide, and \(M\) is the maximum value in numsDivide.
1 2 3 4 5 6 7 8 9 10 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
Solution 2: Math + Enumeration (No Sorting)
Thinking
Method 1 sorts only to find the smallest valid divisor. A linear scan can take the minimum \(y\) that divides \(x\), then count values smaller than \(y\).
After computing the GCD \(x\) of numsDivide, scan nums for the smallest valid divisor \(y\), then count how many elements are smaller than \(y\). No sort is required.
The time complexity is \(O(m + \log M + n)\), and the space complexity is \(O(1)\).
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |