当前位置:   article > 正文

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

统计射击比赛成绩python

题目来源

题目描述

在这里插入图片描述

题目解析

#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";
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号