CF 346 B vector<pair> s[100]

来源:互联网 发布:linux hello world 编辑:程序博客网 时间:2024/06/05 19:56

题目连接

http://codeforces.com/contest/659/problem/B

Description

Very soon Berland will hold a School Team Programming Olympiad. From each of the m Berland regions a team of two people is invited to participate in the olympiad. The qualifying contest to form teams was held and it was attended by n Berland students. There were at least two schoolboys participating from each of the m regions of Berland. The result of each of the participants of the qualifying competition is an integer score from 0 to 800 inclusive.

The team of each region is formed from two such members of the qualifying competition of the region, that none of them can be replaced by a schoolboy of the same region, not included in the team and who received a greater number of points. There may be a situation where a team of some region can not be formed uniquely, that is, there is more than one school team that meets the properties described above. In this case, the region needs to undertake an additional contest. The two teams in the region are considered to be different if there is at least one schoolboy who is included in one team and is not included in the other team. It is guaranteed that for each region at least two its representatives participated in the qualifying contest.

Your task is, given the results of the qualifying competition, to identify the team from each region, or to announce that in this region its formation requires additional contests.

Input

The first line of the input contains two integers n and m (2 ≤ n ≤ 100 000, 1 ≤ m ≤ 10 000, n ≥ 2m) — the number of participants of the qualifying contest and the number of regions in Berland.

Next n lines contain the description of the participants of the qualifying contest in the following format: Surname (a string of length from 1 to 10 characters and consisting of large and small English letters), region number (integer from 1 to m) and the number of points scored by the participant (integer from 0 to 800, inclusive).

It is guaranteed that all surnames of all the participants are distinct and at least two people participated from each of the m regions. The surnames that only differ in letter cases, should be considered distinct.

Output

Print m lines. On the i-th line print the team of the i-th region — the surnames of the two team members in an arbitrary order, or a single character “?” (without the quotes) if you need to spend further qualifying contests in the region.

Sample Input

5 2
Ivanov 1 763
Andreev 2 800
Petrov 1 595
Sidorov 1 790
Semenov 2 503

Sample Output

Sidorov Ivanov
Andreev Semenov

Hint

题意

找出区域内,分数最高的两个人,排序之后比较一下第二和第三的分数,因为第一 一定是可以出线的(即使第二的分数和他一样),要比较第二和第三来决定是否需要加赛。

代码

#include<bits/stdc++.h>using namespace std;#define maxn 1000#define INF  1e9+7#define ll long long#define eps 1e-6typedef pair<int , string> p; //注意string和int的先后bool cmp(p pa,p pb){    return pa.first>pb.first;}vector< p > s[10005];int main(int argc, char const *argv[]){    int n,m;    cin>>n>>m;    for (int i = 0; i < n; ++i)    {        string q;        int a,b;        cin>>q>>a>>b;        p pa=make_pair(b,q);        s[a].push_back(pa);    }    for (int i = 1; i<=m; ++i)    {        sort(s[i].begin(),s[i].end(),cmp);    }    for (int i = 1; i<=m ; ++i)    {        if (s[i].size()==2)        {            cout<<s[i][0].second<<' '<<s[i][1].second<<endl;        }        else{            if (s[i][1].first==s[i][2].first)            {                cout<<'?'<<endl;            }            else{                cout<<s[i][0].second<<' '<<s[i][1].second<<endl;            }        }    }    return 0;}

Get

重点是vector与Pair结合处理数据的方式,以及sort与bool的排序
表格

0 0
原创粉丝点击