-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path07.cpp
70 lines (63 loc) · 1.7 KB
/
07.cpp
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
66
67
68
69
70
#include <bits/stdc++.h>
using namespace std;
//* Printing subsequences whose sum is k
// void subSequence(int n, int k, vector<int> arr, vector<int> empty){
// if(n>=arr.size()){
// int sum = 0;
// for(auto it:empty){
// sum+=it;
// }
// if(sum==k){
// for(auto it:empty){
// cout<<it<<" ";
// }
// cout<<endl;
// }
// return;
// }
// subSequence(n+1,k,arr,empty); //* -->Not take
// empty.push_back(arr[n]);
// subSequence(n+1,k, arr, empty); //* -->Take
// empty.pop_back();
// }
//* Printing only one subsequence whose sum is k
// bool subSequence(int n, int k, vector<int> arr, vector<int> empty){
// if(n>=arr.size()){
// int sum = 0;
// for(auto it:empty){
// sum+=it;
// }
// if(sum==k){
// for(auto it:empty){
// cout<<it<<" ";
// }
// cout<<endl;
// return true;
// }
// else return false;
// }
// empty.push_back(arr[n]);
// if(subSequence(n+1,k, arr, empty)==true)return true; //* -->Take
// empty.pop_back();
// if(subSequence(n+1,k,arr,empty)==true)return true; //* -->Not take
// return false;
// }
//* Give count of subsequences whose sum is k
int subSequence(int n, int k, vector<int> arr,int sum){
if(n>=arr.size()){
if(sum==k){
return 1;
}
return 0;
}
sum+=arr[n];
int l = subSequence(n+1,k, arr, sum); //* -->Take
sum-=arr[n];
int r = subSequence(n+1,k,arr, sum); //* -->Not take
return l+r;
}
int main(){
vector<int> arr{1,2,1};
cout<<subSequence(0,2,arr,0)<<endl;
return 0;
}