Codeforces 149C Division into Teams(模拟)

来源:互联网 发布:本质 知乎 编辑:程序博客网 时间:2024/04/25 06:40

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 n boys playing football in the yard (including Petya), each boy's football playing skill is expressed with a non-negative characteristic ai (the larger it is, the better the boy plays).

Let's denote the number of players in the first team as x, the number of players in the second team as y, the individual numbers of boys who play for the first team as pi and the individual numbers of boys who play for the second team as qi. Division nboys into two teams is considered fair if three conditions are fulfilled:

  • Each boy plays for exactly one team (x + y = n).
  • The sizes of teams differ in no more than one (|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.

Input

The first line contains the only integer n (2 ≤ n ≤ 105) which represents the number of guys in the yard. The next line contains n positive space-separated integers, ai(1 ≤ ai ≤ 104), the i-th number represents the i-th boy's playing skills.

Output

On the first line print an integer x — the number of boys playing for the first team. On the second line print x integers — the individual numbers of boys playing for the first team. On the third line print an integer y — the number of boys playing for the second team, on the fourth line print y integers — the individual numbers of boys playing for the second team. Don't forget that you should fulfil all three conditions: x + y = n|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.

Example
Input
31 2 1
Output
21 2 13 
Input
52 3 3 1 1
Output
34 1 3 25 2 
Note

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 (|2 - 1| = 1 ≤ 1) is fulfilled, the third limitation on the difference in skills ((2 + 1) - (1) = 2 ≤ 2) is fulfilled.


题解:

按从大到小排序然后稍微有技巧得分一分就好了

代码:

#include<stdio.h>#include<string.h>#include<stdlib.h>#include<queue>#include<stack>#include<math.h>#include<vector>#include<map>#include<set>#include<stdlib.h>#include<cmath>#include<string>#include<algorithm>#include<iostream>#include<stdio.h>using namespace std;#define ll long longstruct node{    int index;    int v;}a[100005];int cmp(node x,node y){    return x.v>y.v;}int p1[50005];int p2[50005];int main(){    int n,m,i,j,maxx,s1=0,s2=0,num1=0,num2=0;    scanf("%d",&n);    for(i=0;i<n;i++)    {        scanf("%d",&a[i].v);        a[i].index=i+1;    }    sort(a,a+n,cmp);    int d=n/2;    for(i=0;i<n;i++)    {        if(s2>s1)        {            if(num1<d)            {                s1+=a[i].v;                p1[num1]=a[i].index;                num1++;            }            else            {                s2+=a[i].v;                p2[num2]=a[i].index;                num2++;            }        }        else        {            if(num2<d)            {                s2+=a[i].v;                p2[num2]=a[i].index;                num2++;            }            else            {                s1+=a[i].v;                p1[num1]=a[i].index;                num1++;            }        }    }    printf("%d\n",num1);    for(i=0;i<num1-1;i++)        printf("%d ",p1[i]);    printf("%d\n",p1[num1-1]);    printf("%d\n",num2);    for(i=0;i<num2-1;i++)        printf("%d ",p2[i]);    printf("%d\n",p2[num2-1]);    return 0;}


原创粉丝点击