算法笔记:PAT Ranking(C/C++)

这篇博客介绍了如何使用C/C++解决PAT考试排名问题。通过定义结构体存储考生信息,结合STL中的sort函数,根据分数和准考证号进行定制排序。首先,按考场读取并排序考生,接着对所有考生进行全局排序,最后输出按排名和准考证号排序的考生详情。
摘要由CSDN通过智能技术生成

转眼5天过去了,又连着5天没有更新了!
唉,时间过得真的好快,不知不觉就过的那么久了。
新的一天,要加油啊!
今天来看看sort()函数的使用实例。
题目描述:
有n个考场,每个考场有若干数量的考生。现在给出各个考场中考生的准考证号与分数,要求将所有考生按分数从高到低排序,并按顺序输出所有考生的准考证号、排名、考场号及考场内排名

Programming Ability Test (PAT) is organized by the College of Computer Science and Technology of Zhejiang University. Each test is supposed to run simultaneously in several places, and the ranklists will be merged immediately after the test. Now it is your job to write a program to correctly merge all the ranklists and generate the final rank.

Input Specification:
Each input file contains one test case. For each case, the first line contains a positive number N (≤100), the number of test locations. Then N ranklists follow, each starts with a line containing a positive integer K (≤300), the number of testees, and then K lines containing the registration number (a 13-digit number) and the total score of each testee. All the numbers in a line are separated by a space.

Output Specification:
For each test case, first print in one line the total number of testees. Then print the final ranklist in the following format:

registration_number final_rank location_number local_rank
The locations are numbered from 1 to N. The output must be sorted in nondecreasing order of the final ranks. The testees with the same score must have the same rank, and the output must be sorted in nondecreasing order of their registration numbers.

在这里插入图片描述
注意:这个题目中要求的排序方法是:分数不同的排名不同,分数相同的排名相同但是占用一个排位。

思路:在结构体类型Student中存放题目要求的信息(准考证号、排名、考场号以及考场内排名),依照题目要求,需要写一个排序函数cmp,规则如下:
1、当分数不同时,按分数从大到小排序。
2、否则,按准考证号从小到大排序。
即:需要写一个类似于下面的cmp函数:

bool cmp(Student a,Student b)
{
   
	if(a.score != b.score) return a.score>b.score;
	else return strcmp(a.id,b.<
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值