华为机试:统计射击比赛成绩

题目来源

题目描述

在这里插入图片描述

题目解析

#include <sstream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
using namespace std;

struct Info{
    int id;
    int score;
    Info() : id(0), score(0){
    }
    Info(int id, int score) : id(id), score(score){
    }
};

std::vector<int> split(std::string str, char ch){
    std::vector<int> ans;
    str += ch;
    int j = 0;
    for (int i = 0; i < str.size(); ++i) {
        if(str[i] == ch){
            ans.push_back(stoi(str.substr(j, i - j)));
            j = i + 1;
        }
    }
    return ans;
}

int main() {
    int N;
    std::string str1, str2;
//    std::cin >> N;
//    std::cin >> str1;
//    std::cin >> str2;
    std::vector<int> ids = split("3,3,7,4,4,4,4,7,7,3,5,5,5", ',');
    std::vector<int> scores = split("53,80,68,24,39,76,66,16,100,55,53,80,55", ',');
    std::map<int, std::priority_queue<int>> map;
    for (int i = 0; i < N; ++i) {
        map[ids[i]].push(scores[i]);
    }
    int score;
    std::vector<Info> ans;
    for(auto &it : map){
        if(it.second.size() < 3){
            continue;
        }

        int id = it.first;
        int scoreSum = 0;
        for (int i = 0; i < 3; ++i) {
            scoreSum += it.second.top(); it.second.pop();
        }
        ans.emplace_back(id, scoreSum);
    }
    std::sort(ans.begin(), ans.end(), [](Info &a, Info &b){
        return a.score > b.score ? true : (a.score == b.score ? a.id > b.id : false) ;
    });
    for (auto & an : ans) {
        std::cout << an.id  <<"\t";
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值