CF730I.Olympiad in Programming and Sports

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn students at Berland State University. Every student has two skills, each measured as a number: aia_{i} — the programming skill and bib_{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 pp students in the programming team and exactly ss 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 aia_{i} and the strength of the sports team is the sum of all bib_{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 nn , pp and ss ( 2<=n<=30002<=n<=3000 , p+s<=np+s<=n ) — the number of students, the size of the programming team and the size of the sports team.

The second line contains nn positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=30001<=a_{i}<=3000 ), where aia_{i} is the programming skill of the ii -th student.

The third line contains nn positive integers b1,b2,...,bnb_{1},b_{2},...,b_{n} ( 1<=bi<=30001<=b_{i}<=3000 ), where bib_{i} is the sports skill of the ii -th student.

输出格式

In the first line, print the the maximum strength of the university on the Olympiad. In the second line, print pp numbers — the members of the programming team. In the third line, print ss numbers — the members of the sports team.

The students are numbered from 1 to nn 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 
    
首页