CF626F.Group Projects
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n students in a class working on group projects. The students will divide into groups (some students may be in groups alone), work on their independent pieces, and then discuss the results together. It takes the i -th student ai minutes to finish his/her independent piece.
If students work at different paces, it can be frustrating for the faster students and stressful for the slower ones. In particular, the imbalance of a group is defined as the maximum ai in the group minus the minimum ai in the group. Note that a group containing a single student has an imbalance of 0 . How many ways are there for the students to divide into groups so that the total imbalance of all groups is at most k ?
Two divisions are considered distinct if there exists a pair of students who work in the same group in one division but different groups in the other.
输入格式
The first line contains two space-separated integers n and k ( 1<=n<=200 , 0<=k<=1000 ) — the number of students and the maximum total imbalance allowed, respectively.
The second line contains n space-separated integers ai ( 1<=ai<=500 ) — the time it takes the i -th student to complete his/her independent piece of work.
输出格式
Print a single integer, the number of ways the students can form groups. As the answer may be large, print its value modulo 109+7 .
输入输出样例
输入#1
3 2 2 4 5
输出#1
3
输入#2
4 3 7 8 9 10
输出#2
13
输入#3
4 0 5 10 20 21
输出#3
1
说明/提示
In the first sample, we have three options:
- The first and second students form a group, and the third student forms a group. Total imbalance is 2+0=2 .
- The first student forms a group, and the second and third students form a group. Total imbalance is 0+1=1 .
- All three students form their own groups. Total imbalance is 0 .
In the third sample, the total imbalance must be 0 , so each student must work individually.