1012. The Best Rank (25)-PAT甲级真题

 

 题目大意:已知n个考生的三门成绩,平均分由三门成绩算出,然后四个成绩均作一次排名,这样每名学生就有4个排名;输入id,查找对应学生4个排名中最好的排名,名次相同则按A,C,M,E的顺序输出

详细的代码已给出并有相应的注释

#include <cstdio>
#include <algorithm>
using namespace std;
struct node
{
    int id, best; //best存储最好成绩等级排名对应的下标,0、1、2、3对应A,C,M,E
    int score[4], rank[4]; //score存储分数,rank存储对应的排名
} stu[2005];
int exist[1000000], flag = -1; //exist判断id是否存在
bool cmp1(node a, node b)
{
    return a.score[flag] > b.score[flag];
}
int main()
{
    int n, m, id;
    scanf("%d %d", &n, &m);
    for(int i = 0; i < n; i++)
    {
        scanf("%d %d %d %d", &stu[i].id, &stu[i].score[1], &stu[i].score[2], &stu[i].score[3]);//0、1、2、3对应A,C,M,E
        stu[i].score[0] = (stu[i].score[1] + stu[i].score[2] + stu[i].score[3]) / 3.0 + 0.5;
    }
    for(flag = 0; flag <= 3; flag++)   //for循环遍历求出各个学科的成绩排名,flag为0、1、2、3对应A,C,M,E
    {
        sort(stu, stu + n, cmp1); //排序
        stu[0].rank[flag] = 1;
        for(int i = 1; i < n; i++)
        {
            stu[i].rank[flag] = i + 1;
            if(stu[i].score[flag] == stu[i - 1].score[flag]) //与前一个分数相同,则排名相同(例如1、1、3、4、5)
                stu[i].rank[flag] = stu[i - 1].rank[flag];
        }
    }
    for(int i = 0; i < n; i++)
    {
        exist[stu[i].id] = i + 1; //id若存在,在exist数组中的值为对应位置的下标+1,否则为0
        stu[i].best = 0;
        int minn = stu[i].rank[0];
        for(int j = 1; j <= 3; j++) //遍历求出最好的排名,即最小的rank数组值,将下标j记录为best
        {
            if(stu[i].rank[j] < minn)
            {
                minn = stu[i].rank[j];
                stu[i].best = j;
            }
        }
    }
    char c[4] = {'A', 'C', 'M', 'E'}; //0、1、2、3对应A,C,M,E
    for(int i = 0; i < m; i++)
    {
        scanf("%d", &id);
        int temp = exist[id];
        if(temp) //id如果存在temp非零
        {
            int best = stu[temp - 1].best;
            printf("%d %c\n", stu[temp - 1].rank[best], c[best]);
        }
        else
        {
            printf("N/A\n");
        }
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Patrickstarԅ(¯ㅂ¯ԅ)

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值