You have n problems. You have estimated the difficulty of the i-th one as integer ci. Now you want to prepare a problemset for a contest, using some of the problems you've made.
A problemset for the contest must consist of at least two problems. You think that the total difficulty of the problems of the contest must be at least l and at most r. Also, you think that the difference between difficulties of the easiest and the hardest of the chosen problems must be at least x.
Find the number of ways to choose a problemset for the contest.
The first line contains four integers n, l, r, x (1 ≤ n ≤ 15, 1 ≤ l ≤ r ≤ 109, 1 ≤ x ≤ 106) — the number of problems you have, the minimum and maximum value of total difficulty of the problemset and the minimum difference in difficulty between the hardest problem in the pack and the easiest one, respectively.
The second line contains n integers c1, c2, ..., cn (1 ≤ ci ≤ 106) — the difficulty of each problem.
Print the number of ways to choose a suitable problemset for the contest.
3 5 6 1 1 2 3
2
4 40 50 10 10 20 30 25
2
5 25 35 10 10 10 20 10 20
6
In the first example two sets are suitable, one consisting of the second and third problem, another one consisting of all three problems.
In the second example, two sets of problems are suitable — the set of problems with difficulties 10 and 30 as well as the set of problems with difficulties 20 and 30.
In the third example any set consisting of one problem of difficulty 10 and one problem of difficulty 20 is suitable.
要出一份卷子,共有n个题目,每个题目对应一个难度,试卷总难度要小于r,大于l,并且最简单的题目和最难的题目难度差要不小于x。
看到n的范围是15,很容易想到搜索。深搜可解,每个题目都有取和不取两个搜索状态,最后再看是否满足条件。注意:题目至少有两个,这个也要放在最终条件判断中。
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int n, l, r, x, ans, dp, pre, temp, leap[17], step;
int a[17];
bool cmp(int a, int b)
{
return a < b;
}
void bfs(int p)
{
int i, temp1, pre1;
if (p == n + 1)
{
if (temp >= x&&dp >= l&&dp <= r&&step>=2)
ans++;
}
else{
if (!leap[p])
{
leap[p] = 1; step++;
dp = dp + a[p];
pre1 = pre;
if (pre == 0){ pre = a[p]; }
temp1 = temp; temp = a[p] - pre;
bfs(p + 1);
temp = temp1; pre = pre1; step--;
dp = dp - a[p];
bfs(p + 1);
leap[p] = 0;
}
}
}
int main()
{
int m, i, j;
cin >> n >> l >> r >> x;
for (i = 1; i <= n; i++)
cin >> a[i];
sort(a+1, a + n + 1, cmp);
ans = 0; dp = 0; pre = 0; temp = 0; step = 0;
memset(leap, 0, sizeof(leap));
bfs(1);
cout << ans << endl;
return 0;
}