首页 > 其他分享 >1137 Final Grading(测试点3段错误、答案错误)

1137 Final Grading(测试点3段错误、答案错误)

时间:2023-09-12 12:45:00浏览次数:42  
标签:index 错误 测试点 Grading int gf student gm final

题目:

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=(Gmid−term​×40%+Gfinal​×60%) if Gmid−term​>Gfinal​, or Gfinal​ will be taken as the final grade G. Here Gmid−term​ and Gfinal​ 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 Gp​'s; the second one contains M mid-term scores Gmid−term​'s; and the last one contains N final exam scores Gfinal​'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 Gp​ Gmid−term​ Gfinal​ 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

 

思路:

1、将学生的分数信息存在结构体数组中,然后对结构体数组进行排序

2、用map来实现从student ID 到 数组下标的映射 

 

测试点3段错误:结构体数组的大小不能只开到10010,可能P,M,N中包含的用户各不相同,应该开到30000。

测试点3答案错误:final grade 是最后计算出来的G,而不是final exam的成绩

 

代码:

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<map>
#include<math.h>
#include<algorithm>
using namespace std;
struct Student{
    string name;
    int gp, gm, gf, gg;
    Student(){
        gp = -1;
        gm = -1;
        gf = -1;
    }
}student[30005];
bool cmp(Student s1, Student s2){
    if(s1.gg != s2.gg){
        return s1.gg > s2.gg;
    }
    if(s1.name != s2.name){
        return s1.name < s2.name;
    }
}
map<string, int> mp;
int main(){
    int p, m, n, index = 1;
    scanf("%d%d%d", &p, &m, &n);
    for(int i = 0; i < p; i++){
        string s; int gp;
        cin>>s>>gp;
        mp[s] = index;
        student[index].gp = gp;
        student[index].name = s;
        index++;
    }
    for(int i = 0; i < m; i++){
        string s; int gm;
        cin>>s>>gm;
        if(mp[s] > 0){
             student[mp[s]].gm = gm;
        }else{
            mp[s] = index;
            student[index].gm = gm;
            student[index].name = s;
            index++;
        }
    }
    for(int i = 0; i < n; i++){
        string s; int gf;
        cin>>s>>gf;
        if(mp[s] > 0){
             student[mp[s]].gf = gf;
        }else{
            mp[s] = index;
            student[index].gf = gf;
            student[index].name = s;
            index++;
        }
    }
    for(int i = 1; i < index; i++){
        int gm = student[i].gm;
        int gf = student[i].gf;
        if(gm > gf){
            student[i].gg = round(gm * 0.4 + gf * 0.6);
        }else{
            student[i].gg = gf;
        }
    }
    sort(student + 1, student + index, cmp);
    for(int i = 1; i < index; i++){
        if(student[i].gp >= 200 && student[i].gg >= 60){
             cout<<student[i].name<<" "<<student[i].gp<<" "<<student[i].gm<<" "<<student[i].gf<<" "<<student[i].gg<<endl;
        }
    }
    return 0;
}

 

标签:index,错误,测试点,Grading,int,gf,student,gm,final
From: https://www.cnblogs.com/yccy/p/17695859.html

相关文章

  • Golang 错误处理丶数组丶切片丶随机数
    一.错误处理1//错误处理2functestError(){3errorExec:=func(){4err:=recover()//recover是内置函数,可以捕获异常5iferr!=nil{//说明捕获到错误6fmt.Println("err=",err)7}8}9err......
  • 视频直播点播平台EasyDSS流媒体服务器按时间调用录像,提示数据查询错误是什么原因?
    EasyDSS能实现视频流媒体的上传、转码、存储、录像、推拉流、直播、点播等功能,具备超低延迟、超高画质、超大并发访问量等特点,可应用在多样化的场景中,如:在线课堂、教育直播、校园活动直播、企业培训、游戏直播等。为了便于用户二次开发、调用与集成,我们也提供了丰富的API接口供用......
  • ArcEngine打开表FROM子句语法错误
    在打开mdb属性表(Table时)中报错FROM子句语法错误。位置在ESRIArcGISGeodatabaseIFeatureWorkspaceOpenTable(StrinaName),分析数据后,发现是因为表名以~TEP开头。这是临时文件,无法打开,打开表时应该跳过这样的表。......
  • idrac登陆dell服务器 提示ssl错误解决方法
    1、使用idrac登陆dell服务器,提示ssl登陆错误,SSLmisserror错误2、勾选SSL以及TLS全选(兼容全部加密证书类型)3、edge使用IE模式访问......
  • delphi FireDAC 调用 Execute 提示 `[FireDAC][SQL Server Native Client 10.0]字符串
    FireDAC调用Execute提示[FireDAC][SQLServerNativeClient10.0]字符串数据,长度不匹配错误问题调用Execute向SQLServer数据库中批量插入数据时,参数中有BLOB数据类型(ftBlob、ftMemo等)时,出现[FireDAC][Phys][ODBC][Microsoft][SQLServerNativeClient10.0]字符串......
  • docker-compose 启动出现警告,关闭时出现错误
    docker-compose启动出现警告,关闭时出现错误WARNING:Foundorphancontainers(xxxxxx)forthisproject.Ifyouremovedorrenamedthisserviceinyourcomposefile,youcanrunthiscommandwiththe--remove-orphansflagtocleanitup原因是projectname命名......
  • 关于 Commerce 启动时遇到的错误消息 failed to initialize connector HTTP 9001
    使用命令行install.bat-rcx-for-spastart启动commerce实例时,遇到下列错误消息:SEVERE:Failedtoinitializeconnector[ConnectorHTTP/1.1-9001]这个错误并不影响最后的Commerce正常运行:SEVERE:Failedtoinitializeconnector[ConnectorHTTP/1.1-9001]Spri......
  • 安防教育直播项目应用中RTSPSever组件libEasyRTSPServer编译arm版本报undefined refer
    大家知道我们团队编译过很多产品的ARM版本,对用户来说,多一种编译方式也是多一种选择,所以我们一直在拓宽TSINGSEE青犀视频全线产品的运用范围。近期TSINGSEE青犀视频研发团队编译了libEasyRTSPServer的ARM版本,在此过程中,我们遇到了编译错误undefinedreferenceto`uselocale’。libE......
  • python3类实例和错误处理
    类实例classCar(object):name="Car"def__init__(self,name):self.name=name#类方法通过@classmethod装饰器实现,只能访问类变量,不能访问实例变量;通过cls参数传递当前类对象,不需要实例化。@classmethoddefrun(cls,speed):......
  • 3. Oracle数据库异常关闭,导致错误3. Oracle数据库异常关闭,导致错误ERROR: ORA-01034:
    之前由于电脑没电,强制关机,导致Oracle数据库异常关闭,再次启动电脑登陆数据库时,发生以下错误:当我尝试重新启动数据库时,发生错误:经过查阅资料后得知:缺少INITXE.ORA文件,需要从下图目录中复制到上图指定目录中,并重命名为initXE.ora即可(这里initxxx.ora中的xxx要取决于你的SID)再......