相对名次

题目链接

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

(注:分数越高的选手,排名越靠前。)

示例:

输入: [5, 4, 3, 2, 1]
输出: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"]
解释: 前三名运动员的成绩为前三高的,因此将会分别被授予 "金牌","银牌"和"铜牌" ("Gold Medal", "Silver Medal" and "Bronze Medal").
余下的两名运动员,我们只需要通过他们的成绩计算将其相对名次即可。

思路

解法一:

  1. 对分数数组进行排序,并创建一个字符名次数组;
  2. 将两个数组组合成字典;
  3. 依次遍历取出对应的字典值。
class Solution:
    def findRelativeRanks(self, score: List[int]) -> List[str]:
        if not score: return []
        # 对数组进行排序
        score_sort = list(sorted(score, reverse=True))
        # 名次
        rank_list = ["Gold Medal", "Silver Medal", "Bronze Medal"]+[str(i+4) for i in range(len(score)-3)]
        # 将两个数组拼接成字典
        map = dict(zip(score_sort, rank_list))
        result = [map[num] for num in score]
        return result