首页 > 其他分享 >PAT Advanced 1025 PAT Ranking(25)

PAT Advanced 1025 PAT Ranking(25)

时间:2022-08-23 23:45:29浏览次数:41  
标签:1025 Ranking PAT number rank cursor score final

题目描述:

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.

Sample Input:

2
5
1234567890001 95
1234567890005 100
1234567890003 95
1234567890002 77
1234567890004 85
4
1234567890013 65
1234567890011 25
1234567890014 100
1234567890012 85

Sample Output:

9
1234567890005 1 1 1
1234567890014 1 2 1
1234567890001 3 1 2
1234567890003 3 1 2
1234567890004 5 1 4
1234567890012 5 2 2
1234567890002 7 1 5
1234567890013 8 2 3
1234567890011 9 2 4

算法描述:排序 结构体

题目大意:

有n个考场,每个考场有若干数量的学生,给出每个考场中考生的编号和分数,要求计算排名,输出所有考生的编号、总排名、考场号、考场内排名

#include<iostream>
#include<string>
#include<algorithm>
using namespace std;

struct testee {
	int score, final_rank, location, local_rank; // 成绩 最终排名 场次 场次排名
	string ID;
}t[30010];

int n, K[101], cursor = 0;

bool cmp(testee x, testee y)
{
	if (x.score != y.score) return x.score > y.score;
	return x.ID < y.ID;
}

int main()
{
	int i, j, k;
	cin >> n;
	for (i = 1; i <= n; i++) {
		cin >> K[i];
		k = cursor;
		for (j = 0 ; j < K[i] ; j ++) {
			cin >> t[cursor].ID >> t[cursor].score;
			t[cursor ++].location = i;
		}
		sort(t + k, t + cursor, cmp);
		for (j = 0 ; j < K[i] ; j ++) {
			if (!j || t[k + j].score != t[k + j - 1].score)t[k + j].local_rank = j + 1;
			else t[k + j].local_rank = t[k + j - 1].local_rank;
		}
	}
	sort(t, t + cursor, cmp);
	for (j = 0 ; j < cursor ; j ++) {
		if (!j || t[j].score != t[j - 1].score)t[j].final_rank = j + 1;
		else t[j].final_rank = t[j - 1].final_rank;
	}
	cout << cursor;
	for (j = 0 ; j < cursor ; j ++) {
		cout << '\n' << t[j].ID << ' ' << t[j].final_rank << ' ' << t[j].location << ' ' << t[j].local_rank;
	}
}

标签:1025,Ranking,PAT,number,rank,cursor,score,final
From: https://www.cnblogs.com/yztozju/p/16618270.html

相关文章