CF149C.Division into Teams

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya loves football very much, especially when his parents aren't home. Each morning he comes to the yard, gathers his friends and they play all day. From time to time they have a break to have some food or do some chores (for example, water the flowers).

The key in football is to divide into teams fairly before the game begins. There are nn boys playing football in the yard (including Petya), each boy's football playing skill is expressed with a non-negative characteristic aia_{i} (the larger it is, the better the boy plays).

Let's denote the number of players in the first team as xx , the number of players in the second team as yy , the individual numbers of boys who play for the first team as pip_{i} and the individual numbers of boys who play for the second team as qiq_{i} . Division nn boys into two teams is considered fair if three conditions are fulfilled:

  • Each boy plays for exactly one team ( x+y=nx+y=n ).
  • The sizes of teams differ in no more than one ( xy<=1|x-y|<=1 ).
  • The total football playing skills for two teams differ in no more than by the value of skill the best player in the yard has. More formally:

Your task is to help guys divide into two teams fairly. It is guaranteed that a fair division into two teams always exists.

输入格式

The first line contains the only integer nn ( 2<=n<=1052<=n<=10^{5} ) which represents the number of guys in the yard. The next line contains nn positive space-separated integers, aia_{i} ( 1<=ai<=1041<=a_{i}<=10^{4} ), the ii -th number represents the ii -th boy's playing skills.

输出格式

On the first line print an integer xx — the number of boys playing for the first team. On the second line print xx integers — the individual numbers of boys playing for the first team. On the third line print an integer yy — the number of boys playing for the second team, on the fourth line print yy integers — the individual numbers of boys playing for the second team. Don't forget that you should fulfil all three conditions: x+y=nx+y=n , xy<=1|x-y|<=1 , and the condition that limits the total skills.

If there are multiple ways to solve the problem, print any of them.

The boys are numbered starting from one in the order in which their skills are given in the input data. You are allowed to print individual numbers of boys who belong to the same team in any order.

输入输出样例

  • 输入#1

    3
    1 2 1
    

    输出#1

    2
    1 2 
    1
    3 
    
  • 输入#2

    5
    2 3 3 1 1
    

    输出#2

    3
    4 1 3 
    2
    5 2 
    

说明/提示

Let's consider the first sample test. There we send the first and the second boy to the first team and the third boy to the second team. Let's check all three conditions of a fair division. The first limitation is fulfilled (all boys play), the second limitation on the sizes of groups ( 21=1<=1|2-1|=1<=1 ) is fulfilled, the third limitation on the difference in skills ( (2+1)(1)=2<=2(2+1)-(1)=2<=2 ) is fulfilled.

首页