@@ -1514,7 +1514,7 @@ headerDepth: 0
1514
1514
| 2591 | 将钱分给最多的儿童 | | [`贪心`](/tag/greedy.md) [`数学`](/tag/math.md) | 🟢 | [🀄️](https://leetcode.cn/problems/distribute-money-to-maximum-children) [🔗](https://leetcode.com/problems/distribute-money-to-maximum-children) |
1515
1515
| 2592 | 最大化数组的伟大值 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/maximize-greatness-of-an-array) [🔗](https://leetcode.com/problems/maximize-greatness-of-an-array) |
1516
1516
| 2593 | 标记所有元素后数组的分数 | [[✓]](/problem/2593.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`排序`](/tag/sorting.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/find-score-of-an-array-after-marking-all-elements) [🔗](https://leetcode.com/problems/find-score-of-an-array-after-marking-all-elements) |
1517
- | 2594 | 修车的最少时间 | | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-time-to-repair-cars) [🔗](https://leetcode.com/problems/minimum-time-to-repair-cars) |
1517
+ | 2594 | 修车的最少时间 | [[✓]](/problem/2594.md) | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-time-to-repair-cars) [🔗](https://leetcode.com/problems/minimum-time-to-repair-cars) |
1518
1518
1519
1519
1520
1520
## Weekly Contest 336 (2023-03-12 10:30)
@@ -1609,7 +1609,7 @@ headerDepth: 0
1609
1609
| :------: | :------ | :------: | :------ | :------: | :------: |
1610
1610
| 2558 | 从数量最多的堆取走礼物 | [[✓]](/problem/2558.md) | [`数组`](/tag/array.md) [`模拟`](/tag/simulation.md) [`堆(优先队列)`](/tag/heap-priority-queue.md) | 🟢 | [🀄️](https://leetcode.cn/problems/take-gifts-from-the-richest-pile) [🔗](https://leetcode.com/problems/take-gifts-from-the-richest-pile) |
1611
1611
| 2559 | 统计范围内的元音字符串数 | [[✓]](/problem/2559.md) | [`数组`](/tag/array.md) [`字符串`](/tag/string.md) [`前缀和`](/tag/prefix-sum.md) | 🟠 | [🀄️](https://leetcode.cn/problems/count-vowel-strings-in-ranges) [🔗](https://leetcode.com/problems/count-vowel-strings-in-ranges) |
1612
- | 2560 | 打家劫舍 IV | | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/house-robber-iv) [🔗](https://leetcode.com/problems/house-robber-iv) |
1612
+ | 2560 | 打家劫舍 IV | [[✓]](/problem/2560.md) | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/house-robber-iv) [🔗](https://leetcode.com/problems/house-robber-iv) |
1613
1613
| 2561 | 重排水果 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🔴 | [🀄️](https://leetcode.cn/problems/rearranging-fruits) [🔗](https://leetcode.com/problems/rearranging-fruits) |
1614
1614
1615
1615
@@ -1728,7 +1728,7 @@ headerDepth: 0
1728
1728
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
1729
1729
| :------: | :------ | :------: | :------ | :------: | :------: |
1730
1730
| 2511 | 最多可以摧毁的敌人城堡数目 | | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) | 🟢 | [🀄️](https://leetcode.cn/problems/maximum-enemy-forts-that-can-be-captured) [🔗](https://leetcode.com/problems/maximum-enemy-forts-that-can-be-captured) |
1731
- | 2512 | 奖励最顶尖的 K 名学生 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/reward-top-k-students) [🔗](https://leetcode.com/problems/reward-top-k-students) |
1731
+ | 2512 | 奖励最顶尖的 K 名学生 | [[✓]](/problem/2512.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/reward-top-k-students) [🔗](https://leetcode.com/problems/reward-top-k-students) |
1732
1732
| 2513 | 最小化两个数组中的最大值 | | [`数学`](/tag/math.md) [`二分查找`](/tag/binary-search.md) [`数论`](/tag/number-theory.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimize-the-maximum-of-two-arrays) [🔗](https://leetcode.com/problems/minimize-the-maximum-of-two-arrays) |
1733
1733
| 2514 | 统计同位异构字符串数目 | | [`哈希表`](/tag/hash-table.md) [`数学`](/tag/math.md) [`字符串`](/tag/string.md) `2+` | 🔴 | [🀄️](https://leetcode.cn/problems/count-anagrams) [🔗](https://leetcode.com/problems/count-anagrams) |
1734
1734
@@ -2005,7 +2005,7 @@ headerDepth: 0
2005
2005
| :------: | :------ | :------: | :------ | :------: | :------: |
2006
2006
| 2399 | 检查相同字母间的距离 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/check-distances-between-same-letters) [🔗](https://leetcode.com/problems/check-distances-between-same-letters) |
2007
2007
| 2400 | 恰好移动 k 步到达某一位置的方法数目 | | [`数学`](/tag/math.md) [`动态规划`](/tag/dynamic-programming.md) [`组合数学`](/tag/combinatorics.md) | 🟠 | [🀄️](https://leetcode.cn/problems/number-of-ways-to-reach-a-position-after-exactly-k-steps) [🔗](https://leetcode.com/problems/number-of-ways-to-reach-a-position-after-exactly-k-steps) |
2008
- | 2401 | 最长优雅子数组 | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`滑动窗口`](/tag/sliding-window.md) | 🟠 | [🀄️](https://leetcode.cn/problems/longest-nice-subarray) [🔗](https://leetcode.com/problems/longest-nice-subarray) |
2008
+ | 2401 | 最长优雅子数组 | [[✓]](/problem/2401.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`滑动窗口`](/tag/sliding-window.md) | 🟠 | [🀄️](https://leetcode.cn/problems/longest-nice-subarray) [🔗](https://leetcode.com/problems/longest-nice-subarray) |
2009
2009
| 2402 | 会议室 III | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`排序`](/tag/sorting.md) `2+` | 🔴 | [🀄️](https://leetcode.cn/problems/meeting-rooms-iii) [🔗](https://leetcode.com/problems/meeting-rooms-iii) |
2010
2010
2011
2011
@@ -2401,7 +2401,7 @@ headerDepth: 0
2401
2401
| :------: | :------ | :------: | :------ | :------: | :------: |
2402
2402
| 2224 | 转化时间需要的最少操作数 | [[✓]](/problem/2224.md) | [`贪心`](/tag/greedy.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/minimum-number-of-operations-to-convert-time) [🔗](https://leetcode.com/problems/minimum-number-of-operations-to-convert-time) |
2403
2403
| 2225 | 找出输掉零场或一场比赛的玩家 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`计数`](/tag/counting.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/find-players-with-zero-or-one-losses) [🔗](https://leetcode.com/problems/find-players-with-zero-or-one-losses) |
2404
- | 2226 | 每个小孩最多能分到多少糖果 | | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-candies-allocated-to-k-children) [🔗](https://leetcode.com/problems/maximum-candies-allocated-to-k-children) |
2404
+ | 2226 | 每个小孩最多能分到多少糖果 | [[✓]](/problem/2226.md) | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-candies-allocated-to-k-children) [🔗](https://leetcode.com/problems/maximum-candies-allocated-to-k-children) |
2405
2405
| 2227 | 加密解密字符串 | | [`设计`](/tag/design.md) [`字典树`](/tag/trie.md) [`数组`](/tag/array.md) `2+` | 🔴 | [🀄️](https://leetcode.cn/problems/encrypt-and-decrypt-strings) [🔗](https://leetcode.com/problems/encrypt-and-decrypt-strings) |
2406
2406
2407
2407
0 commit comments