前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >通过位运算枚举

通过位运算枚举

作者头像
luxuantao
发布2021-02-24 11:21:13
3450
发布2021-02-24 11:21:13
举报
文章被收录于专栏:Fdu弟中弟Fdu弟中弟

原来位运算还能这么用!

原题链接:CodeForces - 550B

You have n problems. You have estimated the difficulty of the i-th one as integer c**i. 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, …, c**n (1 ≤ c**i ≤ 106) — the difficulty of each problem.

Output

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

Example

Input

代码语言:javascript
复制
5 25 35 10
10 10 20 10 20

Output

代码语言:javascript
复制
6

代码如下:

代码语言:javascript
复制
#include <iostream>
#include <cstdio>
#include <cmath>

using namespace std;

int c[20];

int main()
{
    int n,l,r,x;
    cin >> n >> l >> r >> x;
    for (int i = 0; i < n; i++)
        cin >> c[i];
    int ans = 0;
    for (int i = 0; i < pow(2,n); i++)
    {
        int sum = 0,m = 99999999,M = -1;
        for (int j = 0; j < n; j++)
        {
            if (i & 1 << j)
            {
                sum += c[j];
                m = min(m,c[j]);
                M = max(M,c[j]);
            }
        }
        if (sum >= l && sum <= r && (M - m) >= x)
            ans++;
    }
    cout << ans << endl;
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2017-08-15,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档