CF730I.Olympiad in Programming and Sports
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n students at Berland State University. Every student has two skills, each measured as a number: ai — the programming skill and bi — 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 ai and the strength of the sports team is the sum of all bi 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 a1,a2,...,an ( 1<=ai<=3000 ), where ai is the programming skill of the i -th student.
The third line contains n positive integers b1,b2,...,bn ( 1<=bi<=3000 ), where bi 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.
输入输出样例
输入#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