Preparing Olympiad CodeForces - 550B

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.

Input

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.

Output

Print the number of ways to choose a suitable problemset for the contest.

Example
Input
3 5 6 1
1 2 3
Output
2
Input
4 40 50 10
10 20 30 25
Output
2
Input
5 25 35 10
10 10 20 10 20
Output
6
题目大意:
从给定的几个数中选出满足大于等于l,小于等于r,且最大于最小的差不能小于x
思路:
这道题就是一个dfs嘛,深度优先的搜索,从第一个开始去搜,搜到符合大于等于l,小于等于r的就加一,其余的就不符合,记得要记录下最大值和最小值,如果排个序的话会简单的点,时间也会用的少点。

代码;
#include<cstdio>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
int a[20],l,r,y,n,ans,mn,mx;
void dfs(int x,int sum)
{
    /*printf("x=%d\n",x);
    printf("mn=%d mx=%d\n",mn,mx);*/
    if(sum>=l&&sum<=r&&a[x]-mn>=y)
        ans++;
    for(int i=x+1;i<n;i++)
    {
        if(sum+a[i]<=r)
        {
            /*printf("sum+a[%d]=%d\n",i,sum+a[i]);
            printf("mn=%d mx=%d\n",mn,mx);
            printf("-----------\n");*/

            dfs(i,sum+a[i]);
        }
    }
}
int main()
{
    while(~scanf("%d%d%d%d",&n,&l,&r,&y))
    {
        ans=0;
        for(int i=0;i<n;i++)
            scanf("%d",&a[i]);
        sort(a,a+n);
        for(int i=0;i<n;i++)
        {
            mn=a[i];
            dfs(i,a[i]);
        }
        printf("%d\n",ans);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值