Codeforces Round #346 (Div. 2)-B. Qualifying Contest(排序)

来源:互联网 发布:小燕子和知画同时生产 编辑:程序博客网 时间:2024/05/16 04:26
B. Qualifying Contest
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 0001 ≤ m ≤ 10 000n ≥ 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 1to 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.

Examples
input
5 2Ivanov 1 763Andreev 2 800Petrov 1 595Sidorov 1 790Semenov 2 503
output
Sidorov IvanovAndreev Semenov
input
5 2Ivanov 1 800Andreev 2 763Petrov 1 800Sidorov 1 800Semenov 2 503
output
?Andreev Semenov
Note

In the first sample region teams are uniquely determined.

In the second sample the team from region 2 is uniquely determined and the team from region 1 can have three teams: "Petrov"-"Sidorov", "Ivanov"-"Sidorov", "Ivanov" -"Petrov", so it is impossible to determine a team uniquely.


题意:
  给你n个信息,和m个组。要你输出排名1,2的,且1,2名是唯一存在的。

思路:
  这题其实只要按组号,成绩排序,之后判断一下,第一名后面两个是否与它重复,第二名是否有一个与它重复(因为这里粗心写了后面两个,所以Wa了),之后符合就输出字符串,否则输出?。

AC代码:

#include<iostream>#include<functional>#include<algorithm>#include<cstring>#include<string>#include<vector>#include<cstdio>#include<cmath>#include<map>using namespace std;#define CRL(a) memset(a,0,sizeof(a))#define QWQ ios::sync_with_stdio(0)typedef unsigned __int64 LL;typedef  __int64 ll;const int T = 100000+50;const int mod = 1000000007;struct node{char s[20];int num,val;bool operator<(const node& b)const{return num<b.num||(num==b.num&&val>b.val);}}a[T];int n,m;bool jugde(int x){bool f1 ,f2 ;f1 = f2 = false;if(x+2==n)f1=true;for(int i=x;i<x+3&&i<n;++i){if(a[x].num!=a[i].num||a[x].val!=a[i].val)f1=true;}x++;if(f1&&x+1==n)f2=true;for(int i=x;i<x+2&&i<n;++i){if(a[x].num!=a[i].num||a[x].val!=a[i].val)f2=true;}return f1&&f2;}int main(){#ifdef zsc    freopen("input.txt","r",stdin);#endifint i,j,k;while(~scanf("%d%d",&n,&m)){for(i=0;i<n;++i){scanf("%s%d%d",&a[i].s,&a[i].num,&a[i].val);}sort(a,a+n);int vis[T];memset(vis,0,sizeof(vis));for(i=0;i<n;++i){if(!vis[a[i].num]&&jugde(i)){printf("%s %s\n",a[i].s,a[i+1].s);vis[a[i].num] = 1;}else if(!vis[a[i].num])printf("?\n"),vis[a[i].num] = 1;else vis[a[i].num] = 1;}}    return 0;}


1 0
原创粉丝点击