题库练习 Group Projects
← 上一题 下一题 →

A10205 | Group Projects

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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 $a_{i}$ 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 $a_{i}$ in the group minus the minimum $a_{i}$ 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 $a_{i}$ ( $1<=a_{i}<=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 $10^{9}+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
C++ 编辑器
输入
输出