【笨方法学PAT】1137 Final Grading (25 分)

本文描述了一个算法,用于处理在线课程“数据结构”的学生证书资格评定。通过整合在线编程作业、期中考试和期末考试的成绩,筛选出符合特定条件的学生名单,并按最终成绩排序输出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、题目

For a student taking the online course "Data Structures" on China University MOOC (http://www.icourse163.org/), to be qualified for a certificate, he/she must first obtain no less than 200 points from the online programming assignments, and then receive a final grade no less than 60 out of 100. The final grade is calculated by G=(G​mid−term​​×40%+G​final​​×60%) if G​mid−term​​>G​final​​, or G​final​​ will be taken as the final grade G. Here G​mid−term​​ and G​final​​ are the student's scores of the mid-term and the final exams, respectively.

The problem is that different exams have different grading sheets. Your job is to write a program to merge all the grading sheets into one.

Input Specification:

Each input file contains one test case. For each case, the first line gives three positive integers: P , the number of students having done the online programming assignments; M, the number of students on the mid-term list; and N, the number of students on the final exam list. All the numbers are no more than 10,000.

Then three blocks follow. The first block contains P online programming scores G​p​​'s; the second one contains M mid-term scores G​mid−term​​'s; and the last one contains N final exam scores G​final​​'s. Each score occupies a line with the format: StudentID Score, where StudentID is a string of no more than 20 English letters and digits, and Score is a nonnegative integer (the maximum score of the online programming is 900, and that of the mid-term and final exams is 100).

Output Specification:

For each case, print the list of students who are qualified for certificates. Each student occupies a line with the format:

StudentID G​p​​ G​mid−term​​ G​final​​ G

If some score does not exist, output "−1" instead. The output must be sorted in descending order of their final grades (G must be rounded up to an integer). If there is a tie, output in ascending order of their StudentID's. It is guaranteed that the StudentID's are all distinct, and there is at least one qullified student.

Sample Input:

6 6 7
01234 880
a1903 199
ydjh2 200
wehu8 300
dx86w 220
missing 400
ydhfu77 99
wehu8 55
ydjh2 98
dx86w 88
a1903 86
01234 39
ydhfu77 88
a1903 66
01234 58
wehu8 84
ydjh2 82
missing 99
dx86w 81

Sample Output:

missing 400 -1 99 99
ydjh2 200 98 82 88
dx86w 220 88 81 84
wehu8 300 55 84 84

二、题目大意

按照成绩排序。

三、考点

STL、排序

四、注意

1、>=60分的是加权后的grade

五、代码

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

struct node {
	string id;
	int p, m=-1, f=-1,g;
};

bool cmp(node n1, node n2) {
	if (n1.g != n2.g)
		return n1.g > n2.g;
	else
		return n1.id < n2.id;
}

int main() {
	//read
	int p, m, n;
	cin >> p >> m >> n;

	int index = 0;
	vector<node> vec;
	unordered_map<string,int> un_map;

	//program
	for (int i = 0; i < p; ++i) {
		node tmp;
		cin >> tmp.id >> tmp.p;
		if (tmp.p >= 200) {
			un_map[tmp.id] = index++;
			vec.push_back(tmp);
		}
	}

	//mid
	for (int i = 0; i < m; ++i) {
		node tmp;
		cin >> tmp.id >> tmp.m;
		if (un_map.find(tmp.id) == un_map.end())
			continue;
		vec[un_map[tmp.id]].m = tmp.m;
	}

	//final
	for (int i = 0; i < n; ++i) {
		node tmp;
		cin >> tmp.id >> tmp.f;
		if (un_map.find(tmp.id) == un_map.end())
			continue;
		vec[un_map[tmp.id]].f = tmp.f;
	}

	//clear
	vector<node> v;
	for (int i = 0; i < vec.size(); ++i) {
		if (vec[i].m > vec[i].f)
			vec[i].g = (int)(vec[i].m*0.4 + vec[i].f*0.6+0.5);
		else
			vec[i].g = vec[i].f;
		if(vec[i].g>=60)
			v.push_back(vec[i]);
	}

	//sort
	sort(v.begin(), v.end(), cmp);

	for (int i = 0; i < v.size(); ++i) {
		printf("%s %d %d %d %d\n", v[i].id.c_str(), v[i].p, v[i].m, v[i].f, v[i].g);
	}

	system("pause");
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值