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.
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.
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
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.
- 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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted