CodeForces-659B-Qualifying Contest

来源:互联网 发布:js rem 编辑:程序博客网 时间:2024/05/17 08:54

Description

Very soon Berland will hold a School Team Programming Olympiad. From each of them 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 byn Berland students. There were at least two schoolboys participating from each of them regions of Berland. The result of each of the participants of the qualifying competition is an integer score from0 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 agreater 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 andm (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 from1 to 10 characters and consisting of large and small English letters), region number (integer from1 to m) and the number of points scored by the participant (integer from0 to 800, inclusive).

It is guaranteed that all surnames of all the participants are distinct and at least two people participated from each of them 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

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


给你一个数n,m。代表有n个人,来自m个区域。然后选两个人去比赛,如果超过两个人就输出?。

结构体排序输出就好了,只是当中需要判断下两个人的情况

#include<cstdio>      #include<cstring>      #include<algorithm>      #include<iostream>       #define N 100010       #define M 1000000007      using namespace std;      struct zz      {          char name[15];          int area;          int score;      }p[N];      bool cmp(zz a,zz b)      {          if(a.area==b.area)              return a.score>b.score;          return a.area<b.area;      }      struct ss      {          char name1[15];          char name2[15];          int k;      }s[N];      int main()      {          int t,n,m,i,j,k;          while(scanf("%d%d",&n,&m)!=EOF)          {              for(i=0;i<n;i++)                  scanf("%s%d%d",p[i].name,&p[i].area,&p[i].score);              sort(p,p+n,cmp);              int flag=0;              i=1;j=0;              while(i<=m&&j<n)              {                  if(p[j].area!=i)                  {                      j++;                      continue;                  }                  if(p[j].area==i)                  {                      if(p[j+1].area==i)                      {                          if(p[j+2].area==i)                          {                              if(p[j+2].score==p[j+1].score)                                  flag=1;                          }                      }                      else                          flag=1;                  }                  if(flag)                      s[i].k=1;                  else                  {                      strcpy(s[i].name1,p[j].name);                      strcpy(s[i].name2,p[j+1].name);                  }                  i++;                flag=0;              }              for(i=1;i<=m;i++)              {                  if(s[i].k)                      printf("?\n");                  else                      printf("%s %s\n",s[i].name1,s[i].name2);              }          }          return 0;      }  


0 0
原创粉丝点击