Hello Everyone,
You are given an array of n-elements, you have to find the number of subsets whose product of elements is less than or equal to a given integer k.
Examples:
Input : arr[] = {2, 4, 5, 3}, k = 12 Output : 8 Explanation : All possible subsets whose products are less than 12 are: (2), (4), (5), (3), (2, 4), (2, 5), (2, 3), (4, 3) Input : arr[] = {12, 32, 21 }, k = 1 Output : 0 Explanation : there is not any subset such that product of elements is less than 1
Approach : If we go through the basic approach to solve this problem, then we have to generate all possible 2n subset and for each of then we have to calculate product of elements of subset and compare products value with given then. But the disadvantage of this approach is that its time complexity is too high i.e. O(n*2n). Now, we can see that it is going to be exponential time complexity which should be avoided in case of competitive codings.
**How to use MEET IN THE MIDDLE Approach :**First of all we simply divide the given array into two equal parts and after that we generate all possible subsets for both parts of array and store value of elements product for each subset separately into two vectors (say subset1 & subset2). Now this will cost O(2n/2) time complexity. Now if we sort these two vectors(subset1 & subset2) having (2n/2) elements each then this will cost O(2n/2log2n/2) ≈ O(n(2n/2)) Time complexity. In next step we traverse one vector subset1 with 2n/2 elements and find the upper bound of k/subset1[i] in second vector which will tell us the count of total elements whose products will be less than or equal to k. And thus for each element in subset1 we will try to perform a binary search in form of upper_bound in subset2 resulting again a Time complexity of O(n*(2n/2)). So, if we try to compute our overall complexity for this approach we will have O(n*(2n/2) + n*(2n/2) + n*(2n/2)) ≈ O(n*(2n/2)) as our time complexity which is much efficient than our brute force approach.
Algorithm :
- Divide array into two equal parts.
- Generate all subsets and for each subset calculate product of elements and push this to a vector. try this for both part of array.
- Sort both new vector which contains products of elements for each possible subsets.
- Traverse any one vector and find upper-bound of element k/vector[i] to find how many subsets are there for vector[i] whose product of elements is less than k.
Some key points to improve complexity :
- Ignore elements from array if greater than k.
- Ignore product of elements to push into vector (subset1 or subset2) if greater than k.
Below is the implementation of the above approach:
// CPP to find the count subset having product
// less than k
#include <bits/stdc++.h>
using
namespace
std;
int
findSubset(
long
long
int
arr[],
int
n,
long
long
int
k)
{
// declare four vector for dividing array into
// two halves and storing product value of
// possible subsets for them
vector<
long
long
int
> vect1, vect2, subset1, subset2;
// ignore element greater than k and divide
// array into 2 halves
for
(
int
i = 0; i < n; i++) {
// ignore element if greater than k
if
(arr[i] > k)
continue
;
if
(i <= n / 2)
vect1.push_back(arr[i]);
else
vect2.push_back(arr[i]);
}
// generate all subsets for 1st half (vect1)
for
(
int
i = 0; i < (1 << vect1.size()); i++) {
long
long
value = 1;
for
(
int
j = 0; j < vect1.size(); j++) {
if
(i & (1 << j))
value *= vect1[j];
}
// push only in case subset product is less
// than equal to k
if
(value <= k)
subset1.push_back(value);
}
// generate all subsets for 2nd half (vect2)
for
(
int
i = 0; i < (1 << vect2.size()); i++) {
long
long
value = 1;
for
(
int
j = 0; j < vect2.size(); j++) {
if
(i & (1 << j))
value *= vect2[j];
}
// push only in case subset product is
// less than equal to k
if
(value <= k)
subset2.push_back(value);
}
// sort subset2
sort(subset2.begin(), subset2.end());
long
long
count = 0;
for
(
int
i = 0; i < subset1.size(); i++)
count += upper_bound(subset2.begin(), subset2.end(),
(k / subset1[i]))
- subset2.begin();
// for null subset decrement the value of count
count--;
// return count
return
count;
}
// driver program
int
main()
{
long
long
int
arr[] = { 4, 2, 3, 6, 5 };
int
n =
sizeof
(arr) /
sizeof
(arr[0]);
long
long
int
k = 25;
cout << findSubset(arr, n, k);
return
0;
}
Output:
15