1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-22 05:26:46 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -12,7 +12,7 @@
"translatedContent": "<p><code>n</code> 名运动员参与一场锦标赛,所有运动员站成一排,并根据 <strong>最开始的</strong> 站位从 <code>1</code> 到 <code>n</code> 编号(运动员 <code>1</code> 是这一排中的第一个运动员,运动员 <code>2</code> 是第二个运动员,依此类推)。</p>\n\n<p>锦标赛由多个回合组成(从回合 <code>1</code> 开始)。每一回合中,这一排从前往后数的第 <code>i</code> 名运动员需要与从后往前数的第 <code>i</code> 名运动员比拼,获胜者将会进入下一回合。如果当前回合中运动员数目为奇数,那么中间那位运动员将轮空晋级下一回合。</p>\n\n<ul>\n\t<li>例如,当前回合中,运动员 <code>1, 2, 4, 6, 7</code> 站成一排\n\n\t<ul>\n\t\t<li>运动员 <code>1</code> 需要和运动员 <code>7</code> 比拼</li>\n\t\t<li>运动员 <code>2</code> 需要和运动员 <code>6</code> 比拼</li>\n\t\t<li>运动员 <code>4</code> 轮空晋级下一回合</li>\n\t</ul>\n\t</li>\n</ul>\n\n<p>每回合结束后,获胜者将会基于最开始分配给他们的原始顺序(升序)重新排成一排。</p>\n\n<p>编号为 <code>firstPlayer</code> 和 <code>secondPlayer</code> 的运动员是本场锦标赛中的最佳运动员。在他们开始比拼之前,完全可以战胜任何其他运动员。而任意两个其他运动员进行比拼时,其中任意一个都有获胜的可能,因此你可以 <strong>裁定</strong> 谁是这一回合的获胜者。</p>\n\n<p>给你三个整数 <code>n</code>、<code>firstPlayer</code> 和 <code>secondPlayer</code> 。返回一个由两个值组成的整数数组,分别表示两位最佳运动员在本场锦标赛中比拼的 <strong>最早</strong> 回合数和 <strong>最晚</strong> 回合数。</p>\n\n<p> </p>\n\n<p><strong>示例 1</strong></p>\n\n<pre><strong>输入:</strong>n = 11, firstPlayer = 2, secondPlayer = 4\n<strong>输出:</strong>[3,4]\n<strong>解释:</strong>\n一种能够产生最早回合数的情景是\n回合 11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11\n回合 22, 3, 4, 5, 6, 11\n回合 32, 3, 4\n一种能够产生最晚回合数的情景是\n回合 11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11\n回合 21, 2, 3, 4, 5, 6\n回合 31, 2, 4\n回合 42, 4\n</pre>\n\n<p><strong>示例 2</strong></p>\n\n<pre><strong>输入:</strong>n = 5, firstPlayer = 1, secondPlayer = 5\n<strong>输出:</strong>[1,1]\n<strong>解释:</strong>两名最佳运动员 1 和 5 将会在回合 1 进行比拼。\n不存在使他们在其他回合进行比拼的可能。\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>2 &lt;= n &lt;= 28</code></li>\n\t<li><code>1 &lt;= firstPlayer &lt; secondPlayer &lt;= n</code></li>\n</ul>\n",
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 19,
"likes": 21,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"1.4K\", \"totalSubmission\": \"3.2K\", \"totalAcceptedRaw\": 1439, \"totalSubmissionRaw\": 3210, \"acRate\": \"44.8%\"}",
"stats": "{\"totalAccepted\": \"1.5K\", \"totalSubmission\": \"3.3K\", \"totalAcceptedRaw\": 1460, \"totalSubmissionRaw\": 3253, \"acRate\": \"44.9%\"}",
"hints": [
"Brute force using bitmasks and simulate the rounds.",
"Calculate each state one time and save its solution."