A10592 | Olympiad in Programming and Sports
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ students at Berland State University. Every student has two skills, each measured as a number: $a_{i}$ — the programming skill and $b_{i}$ — the sports skill.
It is announced that an Olympiad in programming and sports will be held soon. That's why Berland State University should choose two teams: one to take part in the programming track and one to take part in the sports track.
There should be exactly $p$ students in the programming team and exactly $s$ students in the sports team. A student can't be a member of both teams.
The university management considers that the strength of the university on the Olympiad is equal to the sum of two values: the programming team strength and the sports team strength. The strength of a team is the sum of skills of its members in the corresponding area, so the strength of the programming team is the sum of all $a_{i}$ and the strength of the sports team is the sum of all $b_{i}$ over corresponding team members.
Help Berland State University to compose two teams to maximize the total strength of the university on the Olympiad.
It is announced that an Olympiad in programming and sports will be held soon. That's why Berland State University should choose two teams: one to take part in the programming track and one to take part in the sports track.
There should be exactly $p$ students in the programming team and exactly $s$ students in the sports team. A student can't be a member of both teams.
The university management considers that the strength of the university on the Olympiad is equal to the sum of two values: the programming team strength and the sports team strength. The strength of a team is the sum of skills of its members in the corresponding area, so the strength of the programming team is the sum of all $a_{i}$ and the strength of the sports team is the sum of all $b_{i}$ over corresponding team members.
Help Berland State University to compose two teams to maximize the total strength of the university on the Olympiad.
输入格式
The first line contains three positive integer numbers $n$ , $p$ and $s$ ( $2<=n<=3000$ , $p+s<=n$ ) — the number of students, the size of the programming team and the size of the sports team.
The second line contains $n$ positive integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=3000$ ), where $a_{i}$ is the programming skill of the $i$ -th student.
The third line contains $n$ positive integers $b_{1},b_{2},...,b_{n}$ ( $1<=b_{i}<=3000$ ), where $b_{i}$ is the sports skill of the $i$ -th student.
The second line contains $n$ positive integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=3000$ ), where $a_{i}$ is the programming skill of the $i$ -th student.
The third line contains $n$ positive integers $b_{1},b_{2},...,b_{n}$ ( $1<=b_{i}<=3000$ ), where $b_{i}$ is the sports skill of the $i$ -th student.
输出格式
In the first line, print the the maximum strength of the university on the Olympiad. In the second line, print $p$ numbers — the members of the programming team. In the third line, print $s$ numbers — the members of the sports team.
The students are numbered from 1 to $n$ as they are given in the input. All numbers printed in the second and in the third lines should be distinct and can be printed in arbitrary order.
If there are multiple solutions, print any of them.
The students are numbered from 1 to $n$ as they are given in the input. All numbers printed in the second and in the third lines should be distinct and can be printed in arbitrary order.
If there are multiple solutions, print any of them.
输入输出样例
输入 #1
5 2 2 1 3 4 5 2 5 3 2 1 4
输出 #1
18 3 4 1 5
输入 #2
4 2 2 10 8 8 3 10 7 9 4
输出 #2
31 1 2 3 4
输入 #3
5 3 1 5 2 5 1 7 6 3 1 6 3
输出 #3
23 1 3 5 4
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted