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)/保龄球游戏的获胜者 [determine-the-winner-of-a-bowling-game].html

62 lines
2.2 KiB
HTML
Raw Normal View History

2023-05-03 20:22:43 +08:00
<p>给你两个下标从 <strong>0</strong> 开始的整数数组 <code>player1</code><code>player2</code> ,分别表示玩家 1 和玩家 2 击中的瓶数。</p>
<p>保龄球比赛由 <code>n</code> 轮组成,每轮的瓶数恰好为 <code>10</code></p>
<p>假设玩家在第 <code>i</code> 轮中击中&nbsp;<code>x<sub>i</sub></code> 个瓶子。玩家第 <code>i</code> 轮的价值为:</p>
<ul>
2023-12-09 18:42:21 +08:00
<li>如果玩家在该轮的前两轮的任何一轮中击中了 <code>10</code> 个瓶子,则为 <code>2x<sub>i</sub></code></li>
2023-05-03 20:22:43 +08:00
<li>否则,为&nbsp;<code>x<sub>i</sub></code></li>
</ul>
<p>玩家的得分是其 <code>n</code> 轮价值的总和。</p>
<p>返回</p>
<ul>
<li>如果玩家 1 的得分高于玩家 2 的得分,则为 <code>1</code> </li>
<li>如果玩家 2 的得分高于玩家 1 的得分,则为 <code>2</code> </li>
<li>如果平局,则为 <code>0</code></li>
</ul>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>player1 = [4,10,7,9], player2 = [6,5,2,3]
<strong>输出:</strong>1
<strong>解释:</strong>player1 的得分是 4 + 10 + 2*7 + 2*9 = 46 。
player2 的得分是 6 + 5 + 2 + 3 = 16 。
player1 的得分高于 player2 的得分,所以 play1 在比赛中获胜,答案为 1 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>player1 = [3,5,7,6], player2 = [8,10,10,2]
<strong>输出:</strong>2
<strong>解释:</strong>player1 的得分是 3 + 5 + 7 + 6 = 21 。
player2 的得分是 8 + 10 + 2*10 + 2*2 = 42 。
player2 的得分高于 player1 的得分,所以 play2 在比赛中获胜,答案为 2 。</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>player1 = [2,3], player2 = [4,1]
<strong>输出:</strong>0
<strong>解释:</strong>player1 的得分是 2 + 3 = 5 。
player2 的得分是 4 + 1 = 5 。
player1 的得分等于 player2 的得分,所以这一场比赛平局,答案为 0 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>n == player1.length == player2.length</code></li>
<li><code>1 &lt;= n &lt;= 1000</code></li>
<li><code>0 &lt;= player1[i], player2[i] &lt;= 10</code></li>
</ul>