HAUT OJ 1186: 奖学金(结构体专题)

#include <bits/stdc++.h>
using namespace std;

struct Person {
    string name;
    int grade1; // 期末平均成绩
    int grade2; // 班级评议成绩
    char isBan; // 是否是学生干部 (Y/N)
    char isXi; // 是否是西部省份学生 (Y/N)
    int papers; // 发表论文数
    int totalMoney; // 总奖金
};

bool compare(const Person& a, const Person& b) {
    return a.totalMoney > b.totalMoney || (a.totalMoney == b.totalMoney && a.name < b.name);
}

int main() {
    int n;
    cin >> n;
    vector<Person> students(n);

    for (int i = 0; i < n; ++i) {
        cin >> students[i].name >> students[i].grade1 >> students[i].grade2 >> students[i].isBan >> students[i].isXi >> students[i].papers;
        students[i].totalMoney = 0;

        // 计算各项奖学金
        if (students[i].grade1 > 80 && students[i].papers >= 1) {
            students[i].totalMoney += 8000;
        }
        if (students[i].grade1 > 85 && students[i].grade2 > 80) {
            students[i].totalMoney += 4000;
        }
        if (students[i].grade1 > 90) {
            students[i].totalMoney += 2000;
        }
        if (students[i].grade1 > 85 && students[i].isXi == 'Y') {
            students[i].totalMoney += 1000;
        }
        if (students[i].grade2 > 80 && students[i].isBan == 'Y') {
            students[i].totalMoney += 850;
        }
    }

    // 找出奖金最高的学生
    sort(students.begin(), students.end(), compare);
    cout << students[0].name << endl;
    cout << students[0].totalMoney << endl;

    // 计算所有学生的总奖金
    int totalScholarship = 0;
    for (const auto& student : students) {
        totalScholarship += student.totalMoney;
    }
    cout << totalScholarship << endl;

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值