Codeforces 149C Division into Teams(模拟)

97 篇文章 0 订阅

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
3
1 2 1
Output
2
1 2 
1
3 
Input
5
2 3 3 1 1
Output
3
4 1 3 
2
5 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 long
struct 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;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值