cf B. Finding Team Member (STL_优先队列)

There is a programing contest named SnakeUp, 2n people want to compete for it. In order to attend this contest, people need to form teams of exactly two people. You are given the strength of each possible combination of two people. All the values of the strengths are distinct.

Every contestant hopes that he can find a teammate so that their team’s strength is as high as possible. That is, a contestant will form a team with highest strength possible by choosing a teammate from ones who are willing to be a teammate with him/her. More formally, two people A and B may form a team if each of them is the best possible teammate (among the contestants that remain unpaired) for the other one.

Can you determine who will be each person’s teammate?

Input

There are 2n lines in the input.

The first line contains an integer n (1 ≤ n ≤ 400) — the number of teams to be formed.

The i-th line (i > 1) contains i - 1 numbers ai1ai2, ... , ai(i - 1). Here aij (1 ≤ aij ≤ 106, all aij are distinct) denotes the strength of a team consisting of person i and person j (people are numbered starting from 1.)

Output

Output a line containing 2n numbers. The i-th number should represent the number of teammate of i-th person.

Sample test(s)
input
2
6
1 2
3 4 5
output
2 1 4 3
input
3
487060
3831 161856
845957 794650 976977
83847 50566 691206 498447
698377 156232 59015 382455 626960
output
6 5 4 3 2 1
Note

In the first sample, contestant 1 and 2 will be teammates and so do contestant 3 and 4, so the teammate of contestant 1234 will be 2143 respectively.


题意有点搞


#include <bits/stdc++.h>
using namespace std;
int book[1000];

struct node
{
    int x;
    int y;
    int num;
}a;
bool operator<(node x,node y)
{
    if(x.num>y.num) return false;
    return true;
}

int main()
{
    priority_queue<node>qq;
    int ans[1000];
    int n,i,j,t,num,k,flag;
    scanf("%d",&n);
    t=2*n;
    for(i=2;i<=t;i++) {
        for(j=1;j<i;j++){
            scanf("%d",&a.num);
            a.x=i;
            a.y=j;
            qq.push(a);
        }
    }
    k=0,flag=0;
    while(!qq.empty()) {
        node temp=qq.top();
        if(book[temp.x]==0&&book[temp.y]==0) {
            book[temp.x]=1;
            book[temp.y]=1;
            ans[temp.x]=temp.y;
            ans[temp.y]=temp.x;
            flag++;
        }
        if(flag==n) break;
        qq.pop();
    }
    for(i=1;i<=t;i++) {
        if(i==1) printf("%d",ans[i]);
        else printf(" %d",ans[i]);
    }
    printf("\n");
    return 0;
} 





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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值