Skip to content

Commit a697596

Browse files
committed
update
1 parent 9e50b3c commit a697596

23 files changed

+15743
-13660
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 力扣题库(完整版)
22

3-
> 最后更新日期: **2024.01.13**
3+
> 最后更新日期: **2024.01.30**
44
>
55
> 使用脚本前请务必仔细完整阅读本 `README.md` 文件
66

leetcode-cn/origin-data.json

Lines changed: 7717 additions & 7633 deletions
Large diffs are not rendered by default.

leetcode-cn/originData/alice-and-bob-playing-flower-game.json

Lines changed: 170 additions & 0 deletions
Large diffs are not rendered by default.

leetcode-cn/originData/find-the-maximum-number-of-elements-in-subset.json

Lines changed: 185 additions & 0 deletions
Large diffs are not rendered by default.

leetcode-cn/originData/minimize-or-of-remaining-elements-using-operations.json

Lines changed: 188 additions & 0 deletions
Large diffs are not rendered by default.

leetcode-cn/originData/number-of-changing-keys.json

Lines changed: 170 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<p>Alice 和 Bob 在一个长满鲜花的环形草地玩一个回合制游戏。环形的草地上有一些鲜花,Alice 到&nbsp;Bob 之间顺时针有 <code>x</code>&nbsp;朵鲜花,逆时针有 <code>y</code>&nbsp;朵鲜花。</p>
2+
3+
<p>游戏过程如下:</p>
4+
5+
<ol>
6+
<li>Alice 先行动。</li>
7+
<li>每一次行动中,当前玩家必须选择顺时针或者逆时针,然后在这个方向上摘一朵鲜花。</li>
8+
<li>一次行动结束后,如果所有鲜花都被摘完了,那么 <strong>当前</strong>&nbsp;玩家抓住对手并赢得游戏的胜利。</li>
9+
</ol>
10+
11+
<p>给你两个整数&nbsp;<code>n</code>&nbsp;和&nbsp;<code>m</code>&nbsp;,你的任务是求出满足以下条件的所有&nbsp;<code>(x, y)</code>&nbsp;对:</p>
12+
13+
<ul>
14+
<li>按照上述规则,Alice 必须赢得游戏。</li>
15+
<li>Alice 顺时针方向上的鲜花数目&nbsp;<code>x</code>&nbsp;必须在区间&nbsp;<code>[1,n]</code>&nbsp;之间。</li>
16+
<li>Alice 逆时针方向上的鲜花数目 <code>y</code>&nbsp;必须在区间&nbsp;<code>[1,m]</code>&nbsp;之间。</li>
17+
</ul>
18+
19+
<p>请你返回满足题目描述的数对&nbsp;<code>(x, y)</code>&nbsp;的数目。</p>
20+
21+
<p>&nbsp;</p>
22+
23+
<p><strong class="example">示例 1:</strong></p>
24+
25+
<pre>
26+
<b>输入:</b>n = 3, m = 2
27+
<b>输出:</b>3
28+
<b>解释:</b>以下数对满足题目要求:(1,2) ,(3,2) ,(2,1) 。
29+
</pre>
30+
31+
<p><strong class="example">示例 2:</strong></p>
32+
33+
<pre>
34+
<b>输入:</b>n = 1, m = 1
35+
<b>输出:</b>0
36+
<b>解释:</b>没有数对满足题目要求。
37+
</pre>
38+
39+
<p>&nbsp;</p>
40+
41+
<p><strong>提示:</strong></p>
42+
43+
<ul>
44+
<li><code>1 &lt;= n, m &lt;= 10<sup>5</sup></code></li>
45+
</ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<p>给你一个<strong> 正整数 </strong>数组 <code>nums</code></p>
2+
3+
<p>你需要从数组中选出一个满足下述条件的<span data-keyword="subset">子集</span></p>
4+
5+
<ul>
6+
<li>你可以将选中的元素放置在一个下标从 <strong>0</strong> 开始的数组中,并使其遵循以下模式:<code>[x, x<sup>2</sup>, x<sup>4</sup>, ..., x<sup>k/2</sup>, x<sup>k</sup>, x<sup>k/2</sup>, ..., x<sup>4</sup>, x<sup>2</sup>, x]</code><strong>注意</strong><code>k</code> 可以是任何 <strong>非负</strong> 的 2 的幂)。例如,<code>[2, 4, 16, 4, 2]</code><code>[3, 9, 3]</code> 都符合这一模式,而 <code>[2, 4, 8, 4, 2]</code> 则不符合。</li>
7+
</ul>
8+
9+
<p>返回满足这些条件的子集中,元素数量的 <strong>最大值 </strong><em></em></p>
10+
11+
<p>&nbsp;</p>
12+
13+
<p><strong class="example">示例 1:</strong></p>
14+
15+
<pre>
16+
<strong>输入:</strong>nums = [5,4,1,2,2]
17+
<strong>输出:</strong>3
18+
<strong>解释:</strong>选择子集 {4,2,2} ,将其放在数组 [2,4,2] 中,它遵循该模式,且 2<sup>2</sup> == 4 。因此答案是 3 。
19+
</pre>
20+
21+
<p><strong class="example">示例 2:</strong></p>
22+
23+
<pre>
24+
<strong>输入:</strong>nums = [1,3,2,4]
25+
<strong>输出:</strong>1
26+
<strong>解释:</strong>选择子集 {1},将其放在数组 [1] 中,它遵循该模式。因此答案是 1 。注意我们也可以选择子集 {2} 、{4} 或 {3} ,可能存在多个子集都能得到相同的答案。
27+
</pre>
28+
29+
<p>&nbsp;</p>
30+
31+
<p><strong>提示:</strong></p>
32+
33+
<ul>
34+
<li><code>2 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
35+
<li><code>1 &lt;= nums[i] &lt;= 10<sup>9</sup></code></li>
36+
</ul>
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<p>给你一个下标从<strong> 0</strong> 开始的字符串 <code>s</code> ,该字符串由用户输入。按键变更的定义是:使用与上次使用的按键不同的键。例如 <code>s = "ab"</code> 表示按键变更一次,而 <code>s = "bBBb"</code> 不存在按键变更。</p>
2+
3+
<p>返回用户输入过程中按键变更的次数。</p>
4+
5+
<p><strong>注意:</strong><code>shift</code><code>caps lock</code> 等修饰键不计入按键变更,也就是说,如果用户先输入字母 <code>'a'</code> 然后输入字母 <code>'A'</code> ,不算作按键变更。</p>
6+
7+
<p>&nbsp;</p>
8+
9+
<p><strong class="example">示例 1:</strong></p>
10+
11+
<pre>
12+
<strong>输入:</strong>s = "aAbBcC"
13+
<strong>输出:</strong>2
14+
<strong>解释:</strong>
15+
从 s[0] = 'a' 到 s[1] = 'A',不存在按键变更,因为不计入 caps lock 或 shift 。
16+
从 s[1] = 'A' 到 s[2] = 'b',按键变更。
17+
从 s[2] = 'b' 到 s[3] = 'B',不存在按键变更,因为不计入 caps lock 或 shift 。
18+
从 s[3] = 'B' 到 s[4] = 'c',按键变更。
19+
从 s[4] = 'c' 到 s[5] = 'C',不存在按键变更,因为不计入 caps lock 或 shift 。
20+
</pre>
21+
22+
<p><strong class="example">示例 2:</strong></p>
23+
24+
<pre>
25+
<strong>输入:</strong>s = "AaAaAaaA"
26+
<strong>输出:</strong>0
27+
<strong>解释:</strong> 不存在按键变更,因为这个过程中只按下字母 'a' 和 'A' ,不需要进行按键变更。<!-- notionvc: 8849fe75-f31e-41dc-a2e0-b7d33d8427d2 -->
28+
</pre>
29+
30+
<p>&nbsp;</p>
31+
32+
<p><strong>提示:</strong></p>
33+
34+
<ul>
35+
<li><code>1 &lt;= s.length &lt;= 100</code></li>
36+
<li><code>s</code> 仅由英文大写字母和小写字母组成。</li>
37+
</ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<p>给你一个下标从 <strong>0</strong>&nbsp;开始的整数数组&nbsp;<code>nums</code>&nbsp;和一个整数&nbsp;<code>k</code>&nbsp;。</p>
2+
3+
<p>一次操作中,你可以选择 <code>nums</code>&nbsp;中满足&nbsp;<code>0 &lt;= i &lt; nums.length - 1</code>&nbsp;的一个下标 <code>i</code>&nbsp;,并将&nbsp;<code>nums[i]</code> 和&nbsp;<code>nums[i + 1]</code>&nbsp;替换为数字&nbsp;<code>nums[i] &amp; nums[i + 1]</code>&nbsp;,其中&nbsp;<code>&amp;</code>&nbsp;表示按位&nbsp;<code>AND</code>&nbsp;操作。</p>
4+
5+
<p>请你返回 <strong>至多</strong>&nbsp;<code>k</code>&nbsp;次操作以内,使 <code>nums</code>&nbsp;中所有剩余元素按位 <code>OR</code>&nbsp;结果的 <strong>最小值</strong>&nbsp;。</p>
6+
7+
<p>&nbsp;</p>
8+
9+
<p><strong class="example">示例 1:</strong></p>
10+
11+
<pre>
12+
<b>输入:</b>nums = [3,5,3,2,7], k = 2
13+
<b>输出:</b>3
14+
<b>解释:</b>执行以下操作:
15+
1. 将 nums[0] 和 nums[1] 替换为 (nums[0] &amp; nums[1]) ,得到 nums 为 [1,3,2,7] 。
16+
2. 将 nums[2] 和 nums[3] 替换为 (nums[2] &amp; nums[3]) ,得到 nums 为 [1,3,2] 。
17+
最终数组的按位或值为 3 。
18+
3 是 k 次操作以内,可以得到的剩余元素的最小按位或值。</pre>
19+
20+
<p><strong class="example">示例 2:</strong></p>
21+
22+
<pre>
23+
<b>输入:</b>nums = [7,3,15,14,2,8], k = 4
24+
<b>输出:</b>2
25+
<b>解释:</b>执行以下操作:
26+
1. 将 nums[0] 和 nums[1] 替换为 (nums[0] &amp; nums[1]) ,得到 nums 为 [3,15,14,2,8] 。
27+
2. 将 nums[0] 和 nums[1] 替换为 (nums[0] &amp; nums[1]) ,得到 nums 为 [3,14,2,8] 。
28+
3. 将 nums[0] 和 nums[1] 替换为 (nums[0] &amp; nums[1]) ,得到 nums 为 [2,2,8] 。
29+
4. 将 nums[1] 和 nums[2] 替换为 (nums[1] &amp; nums[2]) ,得到 nums 为 [2,0] 。
30+
最终数组的按位或值为 2 。
31+
2 是 k 次操作以内,可以得到的剩余元素的最小按位或值。
32+
</pre>
33+
34+
<p><strong class="example">示例 3:</strong></p>
35+
36+
<pre>
37+
<b>输入:</b>nums = [10,7,10,3,9,14,9,4], k = 1
38+
<b>输出:</b>15
39+
<b>解释:</b>不执行任何操作,nums 的按位或值为 15 。
40+
15 是 k 次操作以内,可以得到的剩余元素的最小按位或值。
41+
</pre>
42+
43+
<p>&nbsp;</p>
44+
45+
<p><strong>提示:</strong></p>
46+
47+
<ul>
48+
<li><code>1 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
49+
<li><code>0 &lt;= nums[i] &lt; 2<sup>30</sup></code></li>
50+
<li><code>0 &lt;= k &lt; nums.length</code></li>
51+
</ul>

0 commit comments

Comments
 (0)