zoukankan      html  css  js  c++  java
  • Finding Team Member

    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 aredistinct.

    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 ai1, ai2, ... , 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 1, 2, 3, 4 will be2, 1, 4, 3 respectively.

    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <cstdlib>
    #include <iostream>
    #include <algorithm>
    using namespace std;
    typedef long long LL;
    const int oo = 1e9;
    const double PI = acos(-1);
    const int N = 1e7;
    struct da
    {
        int friends, x, y;
        bool operator < (const da &a)const
        {
            return friends > a.friends;
        }
    }as[N];
    int simulate[N];
    int main()
    {
        int i, j, n, k, num;
        while(~scanf("%d", &n))
        {
            k = 0;
            memset(simulate, 0, sizeof(simulate));
            for(i = 2;  i <= 2*n; i++)
            {
                for(j = 1; j < i; j++)
                {
                    scanf("%d", &num);
                    as[k].friends = num;
                    as[k].x = i;
                    as[k++].y = j;
                }
            }
            sort(as, as+k);
            for(i = 0; i < k; i++)
            {
                int a = as[i].x;
                int b = as[i].y;
                if(simulate[a] == 0 && simulate[b] == 0)
                {
                    simulate[a] = b;
                    simulate[b] = a;
                }
            }
            for(i = 1; i < 2*n; i++)
                printf("%d ", simulate[i]);
            printf("%d
    ", simulate[i]);
        }
        return 0;
    }
    

      

  • 相关阅读:
    Schema约束
    gitalk报错问题
    SQL语句中单引号、双引号和反引号的区分
    用Eclipse上传项目到github
    git服务器搭建
    使用IntelliJ IDEA和Eclipse导入Github项目
    事务隔离级别的简单理解
    大公司里怎样开发和部署前端代码?
    页面无刷新Upload File
    MVC 文件上传问题
  • 原文地址:https://www.cnblogs.com/PersistFaith/p/4844942.html
Copyright © 2011-2022 走看看