1137 Final Grading (25)

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

题目大意:在慕课上学习数据结构的同学想要获得证书,需要满足一些条件。首先程序设计考试得分要大于等于200分,其次需要总评成绩大于等于60小于等于100。总评成绩根据期中和期末考试成绩得到,如果期中考试成绩大于期末考试,则总评成绩等于向上取整的40%期中+60%期末分数;如果期中考试成绩小于期末考试,则总评成绩等于期末成绩。

现给出p条程序考试记录,m条期中考试记录,n条期末考试记录。每条记录由考生姓名、对应成绩组成。要求按照成绩降序,成绩相同则按照名字升序输出所有总评分数大于等于60小于等于100的学生,以及程序考试、期中考试、期末考试成绩,如果某项成绩不存在,对应位置输出-1。

分析:问题主要是如何查找到已经出现过的学生。可以用3个数组分别存储程序考试、期中考试、期末考试的记录,之后用三个指针同时遍历三个数组进行匹配;也可以再读入后两个考试的记录时,二分查找程序考试的记录。

#include<algorithm>
#include <iostream>
#include  <cstdlib>
#include  <cstring>
#include   <string>
#include   <vector>
#include   <cstdio>
#include    <queue>
#include    <stack>
#include    <ctime>
#include    <cmath>
#include      <map>
#include      <set>
#define INF 0xffffffff
#define db1(x) cout<<#x<<"="<<(x)<<endl
#define db2(x,y) cout<<#x<<"="<<(x)<<", "<<#y<<"="<<(y)<<endl
#define db3(x,y,z) cout<<#x<<"="<<(x)<<", "<<#y<<"="<<(y)<<", "<<#z<<"="<<(z)<<endl
#define db4(x,y,z,r) cout<<#x<<"="<<(x)<<", "<<#y<<"="<<(y)<<", "<<#z<<"="<<(z)<<", "<<#r<<"="<<(r)<<endl
#define db5(x,y,z,r,w) cout<<#x<<"="<<(x)<<", "<<#y<<"="<<(y)<<", "<<#z<<"="<<(z)<<", "<<#r<<"="<<(r)<<", "<<#w<<"="<<(w)<<endl
using namespace std;

typedef struct node
{
    string name;
    int sp,sm,sn,se;
}node;

bool cmp(node a,node b)
{
    if(a.se!=b.se)return a.se>b.se;
    return a.name<b.name;
}

bool cmpname(node a,node b)
{
    return a.name<b.name;
}

int main(void)
{
    #ifdef test
    freopen("in.txt","r",stdin);
    //freopen("in.txt","w",stdout);
    clock_t start=clock();
    #endif //test

    int p,m,n,t=0;scanf("%d%d%d",&p,&m,&n);
    node num[10010];
    for(int i=0;i<10010;++i)
        num[i].sm=num[i].se=-1;
    for(int i=0;i<p;++i)
    {
        string n;int a;cin>>n>>a;
        if(a>=200)num[t].name=n,num[t].sp=a,t++;
    }sort(num,num+t,cmpname);
    int nsm=0;
    node numsm[10010];
    for(int i=0;i<m;++i)
    {
        string n;int a;cin>>n>>a;
        numsm[nsm].name=n,numsm[nsm].sm=a,nsm++;
    }sort(numsm,numsm+nsm,cmpname);
    int nsn=0;
    node numsn[10010];
    for(int i=0;i<n;++i)
    {
        string n;int a;cin>>n>>a;
        numsn[nsn].name=n,numsn[nsn].sn=a,nsn++;
    }sort(numsn,numsn+nsn,cmpname);

//    for(int i=0;i<t;++i)
//        db2(num[i].name,num[i].sp);
//    printf("\n");
//    for(int i=0;i<nsm;++i)
//        db2(numsm[i].name,numsm[i].sm);
//    printf("\n");
//    for(int i=0;i<nsn;++i)
//        db2(numsn[i].name,numsn[i].sn);
//    printf("\n");

    int indexsm=0,indexsn=0;
    for(int i=0;i<t;++i)
    {
//        db2(i,num[i].name);
        while(numsm[indexsm].name<=num[i].name&&indexsm<nsm)
        {
            if(num[i].name==numsm[indexsm].name)num[i].sm=numsm[indexsm].sm;
            indexsm++;
        }
        while(numsn[indexsn].name<=num[i].name&&indexsn<nsn)
        {
            if(num[i].name==numsn[indexsn].name)num[i].sn=numsn[indexsn].sn;
            indexsn++;
        }
    }

    for(int i=0;i<t;++i)
    {
        if(num[i].sm>num[i].sn)
        {
            int temp=(num[i].sm*0.4+num[i].sn*0.6)*10;
            if(temp%10<=4)num[i].se=temp/10;
            else num[i].se=temp/10+1;
        }
        else num[i].se=max(0,num[i].sn);
//        db5(num[i].name,num[i].sp,num[i].sm,num[i].sn,num[i].se);
    }
    sort(num,num+t,cmp);
    for(int i=0;i<t;++i)
    {
        if(num[i].se>=60)
        {
            cout<<num[i].name<<' '<<num[i].sp<<' '<<num[i].sm<<' '<<num[i].sn<<' '<<num[i].se<<endl;
        }
    }

    #ifdef test
    clockid_t end=clock();
    double endtime=(double)(end-start)/CLOCKS_PER_SEC;
    printf("\n\n\n\n\n");
    cout<<"Total time:"<<endtime<<"s"<<endl;        //s为单位
    cout<<"Total time:"<<endtime*1000<<"ms"<<endl;    //ms为单位
    #endif //test
    return 0;
}

请逐句解释一下下面的代码import java.util.Arrays; import org.apache.http.client.fluent.Request; import ece448.iot_sim.SimConfig; import ece448.iot_sim.Main; public class GradeP2 { public static void main(String[] args) throws Exception { SimConfig config = new SimConfig( 8080, Arrays.asList("xxxx", "yyyy", "zzzz.789"), null, null, null); try (Main m = new Main(config)) { Grading.run(new GradeP2(), 10); } } private String get(String pathParams) throws Exception { return Request.Get("http://127.0.0.1:8080"+pathParams) .userAgent("Mozilla/5.0") .connectTimeout(1000) .socketTimeout(1000) .execute().returnContent().asString(); } public boolean testCase00() throws Exception { String ret = get("/xxxx"); return (ret.indexOf("xxxx is off") != -1) && (ret.indexOf("xxxx is on") == -1) && (ret.indexOf("Power reading is 0.000") != -1); } public boolean testCase01() throws Exception { String ret = get("/xxxx?action=on"); return (ret.indexOf("xxxx is on") != -1) && (ret.indexOf("xxxx is off") == -1); } public boolean testCase02() throws Exception { String ret = get("/xxxx?action=off"); return (ret.indexOf("xxxx is off") != -1) && (ret.indexOf("xxxx is on") == -1); } public boolean testCase03() throws Exception { String ret = get("/xxxx?action=on"); return (ret.indexOf("xxxx is on") != -1) && (ret.indexOf("xxxx is off") == -1); } public boolean testCase04() throws Exception { String ret = get("/xxxx?action=toggle"); return (ret.indexOf("xxxx is off") != -1) && (ret.indexOf("xxxx is on") == -1); } public boolean testCase05() throws Exception { String ret = get("/xxxx?action=toggle"); return (ret.indexOf("xxxx is on") != -1) && (ret.indexOf("xxxx is off") == -1); } public boolean testCase06() throws Exception { String ret = get("/yyyy"); return (ret.indexOf("yyyy is off") != -1) && (ret.indexOf("yyyy is on") == -1); } public boolean testCase07() throws Exception { String ret = get("/xxxx"); return (ret.indexOf("xxxx is on") != -1) && (ret.indexOf("xxxx is off") == -1); } public boolean testCase08() throws Exception { String ret = get("/zzzz.789"); return (ret.indexOf("Power reading is 0.000") != -1); } public boolean testCase09() throws Exception { get("/zzzz.789?action=on"); Thread.sleep(1500); String ret = get("/zzzz.789"); return (ret.indexOf("Power reading is 789.000") != -1); } } private static final Logger logger = LoggerFactory.getLogger(HTTPCommands.class); }
06-12
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值