A13128 | Divide The Students
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Recently a lot of students were enrolled in Berland State University. All students were divided into groups according to their education program. Some groups turned out to be too large to attend lessons in the same auditorium, so these groups should be divided into two subgroups. Your task is to help divide the first-year students of the computer science faculty.
There are $t$ new groups belonging to this faculty. Students have to attend classes on three different subjects — maths, programming and P. E. All classes are held in different places according to the subject — maths classes are held in auditoriums, programming classes are held in computer labs, and P. E. classes are held in gyms.
Each group should be divided into two subgroups so that there is enough space in every auditorium, lab or gym for all students of the subgroup. For the first subgroup of the $i$ -th group, maths classes are held in an auditorium with capacity of $a_{i, 1}$ students; programming classes are held in a lab that accomodates up to $b_{i, 1}$ students; and P. E. classes are held in a gym having enough place for $c_{i, 1}$ students. Analogically, the auditorium, lab and gym for the second subgroup can accept no more than $a_{i, 2}$ , $b_{i, 2}$ and $c_{i, 2}$ students, respectively.
As usual, some students skip some classes. Each student considers some number of subjects (from $0$ to $3$ ) to be useless — that means, he skips all classes on these subjects (and attends all other classes). This data is given to you as follows — the $i$ -th group consists of:
1. $d_{i, 1}$ students which attend all classes;
2. $d_{i, 2}$ students which attend all classes, except for P. E.;
3. $d_{i, 3}$ students which attend all classes, except for programming;
4. $d_{i, 4}$ students which attend only maths classes;
5. $d_{i, 5}$ students which attend all classes, except for maths;
6. $d_{i, 6}$ students which attend only programming classes;
7. $d_{i, 7}$ students which attend only P. E.
There is one more type of students — those who don't attend any classes at all (but they, obviously, don't need any place in auditoriums, labs or gyms, so the number of those students is insignificant in this problem).
Your task is to divide each group into two subgroups so that every auditorium (or lab, or gym) assigned to each subgroup has enough place for all students from this subgroup attending the corresponding classes (if it is possible). Each student of the $i$ -th group should belong to exactly one subgroup of the $i$ -th group; it is forbidden to move students between groups.
There are $t$ new groups belonging to this faculty. Students have to attend classes on three different subjects — maths, programming and P. E. All classes are held in different places according to the subject — maths classes are held in auditoriums, programming classes are held in computer labs, and P. E. classes are held in gyms.
Each group should be divided into two subgroups so that there is enough space in every auditorium, lab or gym for all students of the subgroup. For the first subgroup of the $i$ -th group, maths classes are held in an auditorium with capacity of $a_{i, 1}$ students; programming classes are held in a lab that accomodates up to $b_{i, 1}$ students; and P. E. classes are held in a gym having enough place for $c_{i, 1}$ students. Analogically, the auditorium, lab and gym for the second subgroup can accept no more than $a_{i, 2}$ , $b_{i, 2}$ and $c_{i, 2}$ students, respectively.
As usual, some students skip some classes. Each student considers some number of subjects (from $0$ to $3$ ) to be useless — that means, he skips all classes on these subjects (and attends all other classes). This data is given to you as follows — the $i$ -th group consists of:
1. $d_{i, 1}$ students which attend all classes;
2. $d_{i, 2}$ students which attend all classes, except for P. E.;
3. $d_{i, 3}$ students which attend all classes, except for programming;
4. $d_{i, 4}$ students which attend only maths classes;
5. $d_{i, 5}$ students which attend all classes, except for maths;
6. $d_{i, 6}$ students which attend only programming classes;
7. $d_{i, 7}$ students which attend only P. E.
There is one more type of students — those who don't attend any classes at all (but they, obviously, don't need any place in auditoriums, labs or gyms, so the number of those students is insignificant in this problem).
Your task is to divide each group into two subgroups so that every auditorium (or lab, or gym) assigned to each subgroup has enough place for all students from this subgroup attending the corresponding classes (if it is possible). Each student of the $i$ -th group should belong to exactly one subgroup of the $i$ -th group; it is forbidden to move students between groups.
输入格式
The first line contains one integer $t$ ( $1 \le t \le 300$ ) — the number of groups.
Then the descriptions of groups follow. The description of the $i$ -th group consists of three lines:
- the first line contains three integers $a_{i, 1}$ , $b_{i, 1}$ and $c_{i, 1}$ ( $1 \le a_{i, 1}, b_{i, 1}, c_{i, 1} \le 3000$ ) — the capacity of the auditorium, lab and gym assigned to the first subgroup of the $i$ -th group, respectively;
- the second line contains three integers $a_{i, 2}$ , $b_{i, 2}$ and $c_{i, 2}$ ( $1 \le a_{i, 2}, b_{i, 2}, c_{i, 2} \le 3000$ ) — the capacity of the auditorium, lab and gym assigned to the second subgroup of the $i$ -th group, respectively;
- the third line contains integers $d_{i, 1}$ , $d_{i, 2}$ , ..., $d_{i, 7}$ ( $0 \le d_{i, j} \le 3000$ ) — the number of students belonging to each of the seven aforementioned types in the $i$ -th group. It is not guaranteed that the sum of these values is positive — a group can consist entirely of students that don't attend classes at all.
It is guaranteed that the total number of students in all groups is not greater than $3000$ .
Then the descriptions of groups follow. The description of the $i$ -th group consists of three lines:
- the first line contains three integers $a_{i, 1}$ , $b_{i, 1}$ and $c_{i, 1}$ ( $1 \le a_{i, 1}, b_{i, 1}, c_{i, 1} \le 3000$ ) — the capacity of the auditorium, lab and gym assigned to the first subgroup of the $i$ -th group, respectively;
- the second line contains three integers $a_{i, 2}$ , $b_{i, 2}$ and $c_{i, 2}$ ( $1 \le a_{i, 2}, b_{i, 2}, c_{i, 2} \le 3000$ ) — the capacity of the auditorium, lab and gym assigned to the second subgroup of the $i$ -th group, respectively;
- the third line contains integers $d_{i, 1}$ , $d_{i, 2}$ , ..., $d_{i, 7}$ ( $0 \le d_{i, j} \le 3000$ ) — the number of students belonging to each of the seven aforementioned types in the $i$ -th group. It is not guaranteed that the sum of these values is positive — a group can consist entirely of students that don't attend classes at all.
It is guaranteed that the total number of students in all groups is not greater than $3000$ .
输出格式
For each group, print the result of its division as follows:
- if it is impossible to divide the group, print one integer $-1$ ;
- otherwise print seven integers $f_{i, 1}$ , $f_{i, 2}$ , ..., $f_{i, 7}$ ( $0 \le f_{i, j} \le d_{i, j}$ ) — the number of students the first, second, ..., seventh type in the first subgroup of the $i$ -th group (all other students will be assigned to the second subgroup). If there are multiple answers, print any of them.
- if it is impossible to divide the group, print one integer $-1$ ;
- otherwise print seven integers $f_{i, 1}$ , $f_{i, 2}$ , ..., $f_{i, 7}$ ( $0 \le f_{i, j} \le d_{i, j}$ ) — the number of students the first, second, ..., seventh type in the first subgroup of the $i$ -th group (all other students will be assigned to the second subgroup). If there are multiple answers, print any of them.
输入输出样例
输入 #1
3 9 4 13 1 10 3 1 2 3 4 5 6 7 9 4 13 1 10 3 2 1 3 4 5 6 7 1 2 3 4 5 6 0 0 0 0 0 0 0
输出 #1
1 1 3 4 2 0 7 -1 0 0 0 0 0 0 0
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted