数组单次排序

98 篇文章 0 订阅

给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”(“Gold Medal”, “Silver Medal”, “Bronze Medal”)。分数越高的选手,排名越靠前。

数据范围
0<=N<=105

时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 256M,其他语言512M
示例1
输入例子:
[5, 4, 3, 2, 1]
输出例子:
[“Gold Medal”,“Silver Medal”,“Bronze Medal”,“4”,“5”]

vector<string> findRelativeRanks(vector<int>& score) {
        // write code here
        vector<string> res;
        res.resize(score.size());
        map<int, int,greater<int>> scoreIndexRank;
        for (int i = 0; i < res.size(); i++) {
            scoreIndexRank.insert(pair<int, int> {score[i], i});
        }
        int gsb = 1;
        for (auto sIR : scoreIndexRank) {
            if (gsb == 1) {
                res[sIR.second] = "Gold Medal";
            } else if (gsb == 2) {
                res[sIR.second] = "Silver Medal";
            } else if (gsb == 3) {
                res[sIR.second] = "Bronze Medal";
            } else {
                res[sIR.second] = to_string(gsb);
            }
            ++gsb;
        }
        return res;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

colorful_stars

您是我见过全宇宙最可爱的人!

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

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

打赏作者

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

抵扣说明:

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

余额充值