http://codeforces.com/contest/659/problem/B
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.
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 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.
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.
5 2 Ivanov 1 763 Andreev 2 800 Petrov 1 595 Sidorov 1 790 Semenov 2 503
Sidorov Ivanov Andreev Semenov
5 2 Ivanov 1 800 Andreev 2 763 Petrov 1 800 Sidorov 1 800 Semenov 2 503
? Andreev Semenov
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.
题意:
(不懂英语走很多冤枉路昂)
有 m支 队伍,每个队伍至少选拔 2 个人,分数高的优先被选择,
思考点就是需要考虑输出 ? 的条件。
思路:
无语死了,以为是在 n 个人中每个队伍至少选 m 个人。
成功翻译之后,这里使用一个结构体记录就可以了,
判断条件就是同一个队伍选择第一个人之后,如果存在第二名和第三名分数相等选谁就不好说了。
Code:
#include<stdio.h>
#include<cstring>
#include<algorithm>
using namespace std;
const int MYDD=1103+1e5;
struct Q {
char name[64];
int team;
int score;
} classmate[MYDD];
bool cmp(Q x,Q y) {
if(x.team!=y.team)
return x.team<y.team;//归队
return x.score>y.score;//同一队伍排名
}
int main() {
int n,m;
scanf("%d%d",&n,&m);
for(int j=0; j<n; j++) {
scanf("%s %d %d",classmate[j].name,&classmate[j].team,&classmate[j].score);
}
sort(classmate,classmate+n,cmp);
int num=0;
for(int j=0; j<n; j++) {
if(num==classmate[j].team) continue;
if(classmate[j+1].team==num+1) {//至少两个同学一支队伍
if(classmate[j+1].team==num+1&&classmate[j+2].team==num+1) {
//一支队伍两个以上同学
if(classmate[j+1].score==classmate[j+2].score) puts("?");/*二三名分数相等*/
else {
printf("%s %s\n",classmate[j].name,classmate[j+1].name);
}
} else {/*队伍只有两个同学*/
printf("%s %s\n",classmate[j].name,classmate[j+1].name);
}
} else {
puts("?");
}
num++;
}
return 0;
}
后:
********************