The Annual National Olympic of Information(NOI) will be held.The province of Shandong hold a Select(which we call SDOI for short) to choose some people to go to the NOI.
n(n≤100)
n(n≤100) people comes to the Select and there is
m(m≤50)
m(m≤50) people who can go to the NOI.
According to the tradition and regulation.There were two rounds of the SDOI, they are so called "Round 1" and "Round 2", the full marks of each round is 300 300.
All the n people take part in Round1 and Round2, now the original mark of every person is known. The rule of SDOI of ranking gets to the "standard mark". For each round there is a highest original mark,let's assume that is x x.(it is promised that not all person in one round is 0,in another way, x>0 x>0). So for this round,everyone's final mark equals to his/her original mark∗(300/x) mark∗(300/x).
After we got everyone's final mark in both round.We calculate the Ultimate mark of everyone as 0.3∗round1′s 0.3∗round1′s final mark + 0.7∗round2′s 0.7∗round2′s final mark.It is so great that there were no two persons who have the same Ultimate mark.
After we got everyone's Ultimate mark.We choose the persons as followed:
To encourage girls to take part in the Olympic of Information.In each province,there has to be a girl in its teams.
1. If there is no girls take part in SDOI,The boys with the rank of first m enter the team.
2. If there is girls, then the girl who had the highest score(compared with other girls) enter the team,and other(boys and other girls) m-1 people with the highest mark enter the team.
Just now all the examination had been finished.Please write a program, according to the input information of every people(Name, Sex ,The original mark of Round1 and Round2),Output the List of who can enter the team with their Ultimate mark decreasing.
According to the tradition and regulation.There were two rounds of the SDOI, they are so called "Round 1" and "Round 2", the full marks of each round is 300 300.
All the n people take part in Round1 and Round2, now the original mark of every person is known. The rule of SDOI of ranking gets to the "standard mark". For each round there is a highest original mark,let's assume that is x x.(it is promised that not all person in one round is 0,in another way, x>0 x>0). So for this round,everyone's final mark equals to his/her original mark∗(300/x) mark∗(300/x).
After we got everyone's final mark in both round.We calculate the Ultimate mark of everyone as 0.3∗round1′s 0.3∗round1′s final mark + 0.7∗round2′s 0.7∗round2′s final mark.It is so great that there were no two persons who have the same Ultimate mark.
After we got everyone's Ultimate mark.We choose the persons as followed:
To encourage girls to take part in the Olympic of Information.In each province,there has to be a girl in its teams.
1. If there is no girls take part in SDOI,The boys with the rank of first m enter the team.
2. If there is girls, then the girl who had the highest score(compared with other girls) enter the team,and other(boys and other girls) m-1 people with the highest mark enter the team.
Just now all the examination had been finished.Please write a program, according to the input information of every people(Name, Sex ,The original mark of Round1 and Round2),Output the List of who can enter the team with their Ultimate mark decreasing.
For each testcase, there are two integers n n and m m in the first line (n≥m) (n≥m), standing for the number of people take part in SDOI and the allowance of the team.Followed with n n lines,each line is an information of a person. Name(A string with length less than 20 20,only contain numbers and English letters),Sex(male or female),the Original mark of Round1 and Round2 (both equal to or less than 300 300) separated with a space.
Followed m m lines,every line is the name of the team with their Ultimate mark decreasing.
2 10 8 dxy male 230 225 davidwang male 218 235 evensgn male 150 175 tpkuangmo female 34 21 guncuye male 5 15 faebdc male 245 250 lavender female 220 216 qmqmqm male 250 245 davidlee male 240 160 dxymeizi female 205 190 2 1 dxy male 300 300 dxymeizi female 0 0
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct node{
char name[21];
char sex[7];
int r1;
int r2;
double end;
}st[105];
bool cmp(node a,node b){
return a.end > b.end;
}
int main(){
int t;
scanf("%d",&t);
while (t--){
int n,m;
scanf("%d%d",&n,&m);
double max1 = -1,max2 = -1,max3 = -1;
int flag = 0;
for (int i = 0; i < n; ++i){
scanf("%s%s%d%d",st[i].name,st[i].sex,&st[i].r1,&st[i].r2);
if (st[i].r1 > max1)
max1 = st[i].r1;
if (st[i].r2 > max2)
max2 = st[i].r2;
if (st[i].sex[0] == 'f'){
flag = 1;
}
}
for (int i = 0; i < n; ++i){
st[i].end = st[i].r1*0.3*(300*1.0/max1) + st[i].r2*0.7*(300*1.0/max2);
if (strcmp(st[i].sex,"female") == 0){
if (st[i].end > max3){
max3 = st[i].end;
}
}
}
printf("The member list of Shandong team is as follows:\n");
sort(st,st+n,cmp);
if (st[m-1].end > max3 && strcmp(st[m-1].sex,"male") == 0 && flag == 1){ //遗漏了女生没有参加的情况 卡了1个多小时QAQ
for (int i = 0; i < m-1; ++i){
printf("%s\n",st[i].name);
}
for (int i = m; i < n;++i){
if (st[i].end == max3){
printf("%s\n",st[i].name);
break;
}
}
}
else {
for (int i = 0; i < m; ++i){
printf("%s\n",st[i].name);
}
}
}
return 0;
}