-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathSubset sum.cpp
67 lines (58 loc) Β· 1.17 KB
/
Subset sum.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
/*
SPOJ PROBLEM: SUBSUMS
https://www.spoj.com/problems/SUBSUMS/
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long
vector<ll> subset_sum(vector<ll> v,int n)
{
ll range=(1<<n),i;
vector<ll> ans;
for(i=1;i<range;i++)
{
ll j=i,idx=0,sum=0;
while(j>0)
{
if(j&1)
sum+=v[idx];
j=j>>1;
idx++;
}
ans.push_back(sum);
}
return ans;
}
main()
{
ios_base:: sync_with_stdio(false);
cin.tie(NULL);
ll n,a,b,i;
cin>>n>>a>>b;
ll ele;
vector<ll> v1,v2;
for(i=0;i<n;i++)
{
cin>>ele;
if(i<=(n/2))
v1.push_back(ele);
else
v2.push_back(ele);
}
ll n1=v1.size();
ll n2=v2.size();
vector<ll> sv1,sv2;
sv1=subset_sum(v1,n1);
sv2=subset_sum(v2,n2);
sv1.push_back(0);
sv2.push_back(0);
sort(sv2.begin(),sv2.end());
ll ans=0;
for(auto it:sv1)
{
ll lb=lower_bound(sv2.begin(),sv2.end(),a-it)-sv2.begin();
ll ub=upper_bound(sv2.begin(),sv2.end(),b-it)-sv2.begin();
ans+=(ub-lb);
}
cout<<ans;
}