Problem 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.
Key Insights
- We need to find the smallest element in
nums
after certain deletions. - The smallest element must divide all elements in
numsDivide
. - The problem can be approached by sorting
nums
and checking divisibility starting from the smallest element. - The number of deletions required is equal to the count of elements in
nums
that are less than the smallest element that divides all elements innumsDivide
.
Space and Time Complexity
Time Complexity: O(n log n) for sorting the array, where n is the length of nums
.
Space Complexity: O(1) if we sort in place, or O(n) for storing an additional array.
Solution
To solve the problem, we will:
- Calculate the GCD of all elements in
numsDivide
to find the maximum divisor that we need to check against. - Sort the
nums
array. - Iterate through the sorted
nums
to find the smallest element that divides the GCD ofnumsDivide
. - Count how many elements we need to delete to make this smallest element the minimum element in
nums
.