PAT advanced level "The Best Rank" 정렬, qsort, C 언어 구현
To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mathematics (Calculus or Linear Algebra), and E - English. At the mean time, we encourage students by emphasizing on their best ranks – that is, among the four ranks with respect to the three courses and the average grade, we print the best rank for each student.
For example, The grades of C, M, E and A - Average of 4 students are given as the following:
StudentID C M E A 310101 98 85 88 90 310102 70 95 88 84 310103 82 87 94 88 310104 91 91 91 91
Then the best ranks for all the students are No.1 since the 1st one has done the best in C Programming Language, while the 2nd one in Mathematics, the 3rd one in English, and the last one in average.
Input
Each input file contains one test case. Each case starts with a line containing 2 numbers N and M (<=2000), which are the total number of students, and the number of students who would check their ranks, respectively. Then N lines follow, each contains a student ID which is a string of 6 digits, followed by the three integer grades (in the range of [0, 100]) of that student in the order of C, M and E. Then there are M lines, each containing a student ID.
Output
For each of the M students, print in one line the best rank for him/her, and the symbol of the corresponding rank, separated by a space.
The priorities of the ranking methods are ordered as A > C > M > E. Hence if there are two or more ways for a student to obtain the same best rank, output the one with the highest priority.
If a student is not on the grading list, simply output “N/A”. Sample Input:
5 6
310101 98 85 88
310102 70 95 88
310103 82 87 94
310104 91 91 91
310105 85 90 90
310101
310102
310103
310104
310105
999999
Sample Output:
1 C
1 M
1 E
1 A
3 A
N/A
이 문 제 는 주로 qsort 함수 와 cmp () 의 사용 을 고찰 하거나 sort 함수 와 cmp () 를 사용 합 니 다.이들 의 형식 은 틀 리 지 않 습 니 다. 그 형식 분석 에 주의 하 십시오. qsort 및 sort 는 동시에 구조 체 를 사 용 했 습 니 다. 구조 체 정렬 에 qsort 함 수 를 사용 하려 면 cmp 함수 구 조 를 바 꿔 야 합 니 다. 먼저 const void * 유형의 지침 을 구조 체 유형 을 가리 키 는 지침 으로 바 꾼 다음 에 정렬 해 야 합 니 다. 어떤 인형 은 각종 유형의 cmp 및 cmp 를 가지 고 있 습 니 다.qsort 함수 정리 가 잘 되 었 습 니 다. 링크 는 다음 과 같 습 니 다. 각종 유형의 qsort 는 제 가 쓴 C 언어 코드 입 니 다. 부족 하면 지적 해 주 십시오.
/* qsort cmp , sort cmp qsort cmp
*/
#include
#include
struct Student{ //Student
int id;
int grade[4];
}Stu[2010]; //Stu【i】
char course[4]={'A','C','M','E'};
int Rank[1000000][4]={0};
int now;
int cmp(const void *A,const void *B) //const void * ,
{
struct Student P=*(struct Student *)A;// cmp
struct Student Q=*(struct Student *)B;//
return Q.grade[now]-P.grade[now]; //
}
int main()
{
int N,M,i,j;
scanf("%d%d",&N,&M);
//grade【0】~【3】 A,C,M,E
for(i=0;iscanf("%d%d%d%d",&Stu[i].id,&Stu[i].grade[1],&Stu[i].grade[2],&Stu[i].grade[3]);
Stu[i].grade[0]=Stu[i].grade[1]+Stu[i].grade[2]+Stu[i].grade[3];
// A , A , ,
}
for(now=0;now<4;now++) //now
{
qsort(Stu,N,sizeof(struct Student),cmp); // int,
Rank[Stu[0].id][now]=1; // 1
for(i=1;i// , ( )
{
if(Stu[i].grade[now]==Stu[i-1].grade[now])
Rank[Stu[i].id][now]=Rank[Stu[i-1].id][now];
else Rank[Stu[i].id][now]=i+1;
}
}
int Query;// ID
for(i=0;iscanf("%d",&Query);
if(Rank[Query][0]==0)
printf("N/A
");
else {
int k=0;
for(j=0;j<4;j++)
{
if(Rank[Query][j]printf("%d %c
",Rank[Query][k],course[k]);
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JAVA] 배열 회전 출력요소 가 출력 을 시작 하 는 위치 에 주의 하 십시오. 모두 몇 라운드 의 수출 이 있 습 니까? n/2 + 1 매 라 운 드 는 상, 우, 하, 좌 로 나 뉜 다. 각 방향의 시작 위치 와 좌표 의 관 계 를 구...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.