code forces 149C Division into Teams

来源:互联网 发布:mysql注入 新手 编辑:程序博客网 时间:2024/04/26 09:16

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 n boys 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.


【题解】

 比较水的一道题,只要结果满足要求就行了,所以为了尽可能的额减小误差,我们就把输入的数排序,然后设两个ans1,ans2,如果ans1<=ans2,就把下一个值加到ans1上,反之加到ans2上,这样最后出来的结果一定是符合条件的。

【AC代码】

#include<iostream>#include<algorithm>#include<cstdio>#include<cstring>using namespace std;typedef long long ll;const int N=1e5+10;int vis[N];struct node{    int x;    int num;}a[N];bool cmp(node aa,node bb){    if(aa.x<bb.x) return 1;    return 0;}int main(){    int x,an1,an2;    while(~scanf("%d",&x))    {        for(int i=0;i<x;++i){            scanf("%d",&a[i].x);            a[i].num=i+1;        }        sort(a,a+x,cmp);        memset(vis,0,sizeof vis);        int ans1=0,ans2=0;        an1=an2=0;        for(int i=0;i<x;++i)        {            if(ans1<=ans2)            {                an1++;                ans1+=a[i].x;                vis[i]=1;            }            else            {                an2++;                ans2+=a[i].x;                vis[i]=2;            }        }        printf("%d\n",an1);        for(int i=0,j=0;i<x;++i)            if(vis[i]==1)        {            ++j;            printf("%d",a[i].num);            printf("%c",j==an1?'\n':' ');        }        printf("%d\n",an2);        for(int i=0,j=0;i<x;++i)            if(vis[i]==2)        {            ++j;            printf("%d",a[i].num);            printf("%c",j==an2?'\n':' ');        }    }    return 0;}


原创粉丝点击