测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10592. Olympiad in Programming and Sports

编程题 普及/提高-

题目描述

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.

输入格式

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.

输出格式

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 
上一题 去做题 下一题