给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”("Gold Medal", "Silver Medal", "Bronze Medal")。
(注:分数越高的选手,排名越靠前。)
示例 1:
输入: [5, 4, 3, 2, 1] 输出: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"] 解释: 前三名运动员的成绩为前三高的,因此将会分别被授予 “金牌”,“银牌”和“铜牌” ("Gold Medal", "Silver Medal" and "Bronze Medal"). 余下的两名运动员,我们只需要通过他们的成绩计算将其相对名次即可。
提示:
- N 是一个正整数并且不会超过 10000。
- 所有运动员的成绩都不相同。
class Solution:
def findRelativeRanks(self, score: List[int]) -> List[str]:
n = len(score)
idx = list(range(n))
idx.sort(key=lambda x: -score[x])
res = [None] * n
for i in range(n):
if i == 0:
res[idx[i]] = 'Gold Medal'
elif i == 1:
res[idx[i]] = 'Silver Medal'
elif i == 2:
res[idx[i]] = 'Bronze Medal'
else:
res[idx[i]] = str(i + 1)
return res
class Solution {
public String[] findRelativeRanks(int[] nums) {
int n = nums.length;
Integer[] index = new Integer[n];
for (int i = 0; i < n; ++i) {
index[i] = i;
}
Arrays.sort(index, (o1, o2) -> Integer.compare(nums[o2], nums[o1]));
String[] res = new String[n];
for (int i = 0; i < n; ++i) {
if (i == 0) {
res[index[i]] = "Gold Medal";
} else if (i == 1) {
res[index[i]] = "Silver Medal";
} else if (i == 2) {
res[index[i]] = "Bronze Medal";
} else {
res[index[i]] = String.valueOf(i + 1);
}
}
return res;
}
}