zoukankan      html  css  js  c++  java
  • 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=(Gmidterm​​×40%+Gfinal​​×60%) if Gmidterm​​>Gfinal​​, or Gfinal​​ will be taken as the final grade G. Here Gmidterm​​ 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 Gmidterm​​'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​​ Gmidterm​​ 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
    
     
    #include<iostream>
    #include<vector>
    #include<map>
    #include<algorithm>
    using namespace std;
    struct Node{
        string name;
        int gp,gm,gf,g;
    }node;
    
    bool cmp(Node a,Node b){
        return a.g != b.g ? a.g > b.g : a.name < b.name;
    }
    
    int main(){
        int p,m,n;
        scanf("%d%d%d",&p,&m,&n);
        vector<Node> stu,ans;
        map<string,int> idx;
        string s;
        int cnt = 1,score;
        for(int i = 0; i < p; i++){
            cin >> s >> score;
            if(score >= 200){
                node.name = s;
                node.gp = score;
                node.gm = node.gf = -1;
                node.g = 0;
                stu.push_back(node);
                idx[s] = cnt++;
            }
        }
        for(int i = 0; i < m; i++){
            cin >> s >> score;
            if(idx[s] != 0){
                stu[idx[s]-1].gm = score;
            }
        }
        for(int i = 0; i < n; i++){
            cin >> s >> score;
            if(idx[s] != 0){
                int temp = idx[s] - 1;
                stu[temp].gf = score;
                stu[temp].g = score;
                if(stu[temp].gm > score){
                    stu[temp].g = (int)(stu[temp].gm*0.4+stu[temp].gf*0.6+0.5);
                }
            }
        }
        for(int i = 0; i < stu.size(); i++){
            if(stu[i].g >= 60) ans.push_back(stu[i]);
        }
        sort(ans.begin(),ans.end(),cmp);
        for(int i = 0; i < ans.size(); i++){
            cout << ans[i].name;
            printf(" %d %d %d %d
    ",ans[i].gp,ans[i].gm,ans[i].gf,ans[i].g);
        }
        return 0;
    }
  • 相关阅读:
    let 和 const 命令
    字符串和数组之间相互转换
    angularjs 添加拦截器
    js判断数组是否包含指定元素的方法
    angularjs ng-include
    requirejs学习 关于requirejs的一些参数问题
    ngDialog 点击窗口以外不允许关闭弹窗
    jQuery Jcrop 图像裁剪
    Javascript模块化编程(三):require.js的用法
    angular.bootstrap手动加载angularjs模块
  • 原文地址:https://www.cnblogs.com/wanghao-boke/p/10458559.html
Copyright © 2011-2022 走看看