Gym 100952D&&2015 HIAST Collegiate Programming Contest D. Time to go back【杨辉三角预处理,组合数,dp】

简介: D. Time to go back time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard output ...

D. Time to go back

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

You have been out of Syria for a long time, and you recently decided to come back. You remember that you have M friends there and since you are a generous man/woman you want to buy a gift for each of them, so you went to a gift store that have N gifts, each of them has a price.

You have a lot of money so you don't have a problem with the sum of gifts' prices that you'll buy, but you have K close friends among your M friends you want their gifts to be expensive so the price of each of them is at least D.

Now you are wondering, in how many different ways can you choose the gifts?

Input

The input will start with a single integer T, the number of test cases. Each test case consists of two lines.

the first line will have four integers N, M, K, D (0  ≤  N, M  ≤  200, 0  ≤  K  ≤  50, 0  ≤  D  ≤  500).

The second line will have N positive integer number, the price of each gift.

The gift price is  ≤  500.

Output

Print one line for each test case, the number of different ways to choose the gifts (there will be always one way at least to choose the gifts).

As the number of ways can be too large, print it modulo 1000000007.

Examples
Input
2
5 3 2 100
150 30 100 70 10
10 5 3 50
100 50 150 10 25 40 55 300 5 10
Output
3
126


题目链接:http://codeforces.com/gym/100952/problem/D

题意:有 n 个礼物, m个朋友, 其中k 个很要好的朋友, 要买 price 大于 d 的礼物

分析:领 price >= d 的礼物个数为ans,分步分类(price >= d 的与 < d 的分开算,这样就不会相同的礼物选2次了)

首先 vis[ans][k]*vis[n - ans][m - k];

 

然后vis[ans][k+1]*vis[n-ans][m-k-1];

 

接着 vis[ans][k+2]*vis[n-ans][m-k-2];

 

                         ......

 

直到 k + 1 == ans 或者 m - k - 1 < 0    //其中 如果k + 1 == ans  则ans 选完了,而 m - k - 1 < 0 则是 则是全都选了price >= d的了

 

复杂度 O(T * n)

下面给出AC代码:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 inline ll read()
 5 {
 6     ll x=0,f=1;
 7     char ch=getchar();
 8     while(ch<'0'||ch>'9')
 9     {
10         if(ch=='-')
11             f=-1;
12         ch=getchar();
13     }
14     while(ch>='0'&&ch<='9')
15     {
16         x=x*10+ch-'0';
17         ch=getchar();
18     }
19     return x*f;
20 }
21 inline void write(ll x)
22 {
23     if(x<0)
24     {
25         putchar('-');
26         x=-x;
27     }
28     if(x>9)
29         write(x/10);
30     putchar(x%10+'0');
31 }
32 ll vis[210][210];
33 ll val[210];
34 const ll mod=1000000007;
35 bool cmp(ll a,ll b)
36 {
37     return a>b;
38 }
39 int main()
40 {
41     for(int i=0;i<210;i++)
42     {
43         vis[i][0]=1;
44         for(int j=1;j<=i;j++)
45         {
46             vis[i][j]=((vis[i-1][j-1]%mod)+(vis[i-1][j]%mod))%mod;
47         }
48     }
49     ll t=read();
50     while(t--)
51     {
52         ll ans=0,pos=0;
53         ll n=read();
54         ll m=read();
55         ll k=read();
56         ll d=read();
57         for(ll i=0;i<n;i++)
58             val[i]=read();
59         sort(val,val+n,cmp);
60         for(ll i=0;i<n;i++)
61         {
62             if(val[i]>=d)
63                 ans++;
64             else break;
65         }
66         if(n-ans==0)
67             pos=vis[ans][m];
68         else if(ans<k||n<m)
69             pos=0;
70         else
71         {
72             for(ll i=k;i<=ans;i++)
73             {
74                 if(m-i<0)
75                     break;
76                 pos=(pos+(vis[ans][i]*vis[n-ans][m-i])%mod)%mod;
77             }
78         }
79         write(pos);
80         printf("\n");
81     }
82     return 0;
83 }

 


目录
相关文章
|
15天前
|
Go
go语言中的数据类型
go语言中的数据类型
13 0
|
21天前
|
Go 开发者
掌握Go语言:Go语言结构体,精准封装数据,高效管理实体对象(22)
掌握Go语言:Go语言结构体,精准封装数据,高效管理实体对象(22)
|
21天前
|
安全 Go
掌握Go语言:Go语言通道,并发编程的利器与应用实例(20)
掌握Go语言:Go语言通道,并发编程的利器与应用实例(20)
|
21天前
|
存储 缓存 安全
掌握Go语言:Go语言中的字典魔法,高效数据检索与应用实例解析(18)
掌握Go语言:Go语言中的字典魔法,高效数据检索与应用实例解析(18)
|
21天前
|
Go
使用Go语言发邮件
使用Go语言发邮件
20 2
|
3天前
|
数据采集 存储 Go
使用Go语言和chromedp库下载Instagram图片:简易指南
Go语言爬虫示例使用chromedp库下载Instagram图片,关键步骤包括设置代理IP、创建带代理的浏览器上下文及执行任务,如导航至用户页面、截图并存储图片。代码中新增`analyzeAndStoreImage`函数对图片进行分析和分类后存储。注意Instagram的反爬策略可能需要代码适时调整。
使用Go语言和chromedp库下载Instagram图片:简易指南
|
21天前
|
存储 安全 Go
掌握Go语言:Go语言类型转换,无缝处理数据类型、接口和自定义类型的转换细节解析(29)
掌握Go语言:Go语言类型转换,无缝处理数据类型、接口和自定义类型的转换细节解析(29)
|
1天前
|
程序员 Go API
【Go语言快速上手(二)】 分支与循环&函数讲解
【Go语言快速上手(二)】 分支与循环&函数讲解
|
1天前
|
Go
Golang深入浅出之-Go语言基础语法:变量声明与赋值
【4月更文挑战第20天】本文介绍了Go语言中变量声明与赋值的基础知识,包括使用`var`关键字和简短声明`:=`的方式,以及多变量声明与赋值。强调了变量作用域、遮蔽、初始化与零值的重要性,并提醒读者注意类型推断时的一致性。了解这些概念有助于避免常见错误,提高编程技能和面试表现。
15 0
|
1天前
|
编译器 Go 开发者
Go语言入门|包、关键字和标识符
Go语言入门|包、关键字和标识符
16 0