-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subset Question FB.txt
65 lines (50 loc) · 1007 Bytes
/
Subset Question FB.txt
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Input:
// Given an array A of
// -positive
// -sorted
// -no duplicate
// -integer
// A positive integer k
// Output:
// Count of all such subsets of A,
// Such that for any such subset S,
// Min(S) + Max(S) = k
// subset should contain atleast two elements
// input: {1,2,3,4,5}
// subsets:
// 1, 2, 3, 4, 5, {1,2},{1,3}
// k = 5
// count = 5
// {1, 4},{2,3} {1,2,4}, {1,2,3,4} {1,3,4}
// */
#include<bits/stdc++.h>
using namespace std;
int count_subset(int ar[], int n, int k)
{
int low=0;
int high=n-1;
int iterator=0;
int cnt=0;
while(low<=high)
{ int value=ar[low]+ar[high];
if(value==k)
{
cnt+=pow(2,(high-low)-1);
low++;high--;
}
else if(value>k)
{
high--;
}
else{
low++;
}
}
return cnt;
}
int main()
{
int ar[]={1,2,3,4,5};
cout<<count_subset(ar,5,5);
return 0;
}