1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/相对名次 [relative-ranks].html
2022-03-29 12:43:11 +08:00

41 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个长度为 <code>n</code> 的整数数组 <code>score</code> ,其中 <code>score[i]</code> 是第 <code>i</code> 位运动员在比赛中的得分。所有得分都 <strong>互不相同</strong></p>
<p>运动员将根据得分 <strong>决定名次</strong> ,其中名次第 <code>1</code> 的运动员得分最高,名次第 <code>2</code> 的运动员得分第 <code>2</code> 高,依此类推。运动员的名次决定了他们的获奖情况:</p>
<ul>
<li>名次第 <code>1</code> 的运动员获金牌 <code>"Gold Medal"</code></li>
<li>名次第 <code>2</code> 的运动员获银牌 <code>"Silver Medal"</code></li>
<li>名次第 <code>3</code> 的运动员获铜牌 <code>"Bronze Medal"</code></li>
<li>从名次第 <code>4</code> 到第 <code>n</code> 的运动员,只能获得他们的名次编号(即,名次第 <code>x</code> 的运动员获得编号 <code>"x"</code>)。</li>
</ul>
<p>使用长度为 <code>n</code> 的数组 <code>answer</code> 返回获奖,其中 <code>answer[i]</code> 是第 <code>i</code> 位运动员的获奖情况。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>score = [5,4,3,2,1]
<strong>输出:</strong>["Gold Medal","Silver Medal","Bronze Medal","4","5"]
<strong>解释:</strong>名次为 [1<sup>st</sup>, 2<sup>nd</sup>, 3<sup>rd</sup>, 4<sup>th</sup>, 5<sup>th</sup>] 。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>score = [10,3,8,9,4]
<strong>输出:</strong>["Gold Medal","5","Bronze Medal","Silver Medal","4"]
<strong>解释:</strong>名次为 [1<sup>st</sup>, 5<sup>th</sup>, 3<sup>rd</sup>, 2<sup>nd</sup>, 4<sup>th</sup>] 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>n == score.length</code></li>
<li><code>1 &lt;= n &lt;= 10<sup>4</sup></code></li>
<li><code>0 &lt;= score[i] &lt;= 10<sup>6</sup></code></li>
<li><code>score</code> 中的所有值 <strong>互不相同</strong></li>
</ul>