【Day23】LeetCode:455. 分发饼干,376. 摆动序列,53. 最大子序和

文章目录

  • [LeetCode:455. 分发饼干](#LeetCode:455. 分发饼干)
  • [LeetCode:376. 摆动序列](#LeetCode:376. 摆动序列)
  • [LeetCode:53. 最大子序和](#LeetCode:53. 最大子序和)

LeetCode:455. 分发饼干

https://leetcode.cn/problems/assign-cookies/

思路

贪心算法,胃口最大的孩子匹配最大的饼干。从大到小遍历孩子的胃口:如果当前饼干能满足,则给出;否则直到找到第一个符合条件的孩子。

解答

python 复制代码
class Solution:
    def findContentChildren(self, g: List[int], s: List[int]) -> int:
        len_g = len(g)
        len_s = len(s)

        g.sort()
        s.sort()

        results = 0
        idx_g = len_g - 1
        idx_s = len_s - 1 # s 的指针

        while idx_g >= 0: # 倒序遍历胃口
            if idx_s >= 0 and s[idx_s] >= g[idx_g]: # 将饼干匹配,遇到合适的就给出
                results += 1
                idx_s -= 1

            idx_g -= 1
            
        return results

LeetCode:376. 摆动序列

https://leetcode.cn/problems/wiggle-subsequence/description/

思路

如果一段子数组是单调递增的,那么其中任意两个元素的差都为正数,无法形成摆动。此时,我们只需保留该单调区间的第一个和最后一个元素,因为它们自然形成一个上升趋势和一个下降趋势的转折点。同理,如果一段子数组是单调递减的,只保留首尾。

如果存在重复元素,直接跳过。

解答

python 复制代码
class Solution:
    def wiggleMaxLength(self, nums: List[int]) -> int:
        n = len(nums)

        if n == 1 or (n == 2 and nums[0] != nums[1]): # 仅有一个元素或者含两个不等元素的序列
            return n

        results = 1 # 第一个元素默认计入
        pre_diff = 0

        for i in range(1, n):
            cur_diff = nums[i] - nums[i-1]
            if (cur_diff > 0 and pre_diff <= 0) or (cur_diff < 0 and pre_diff >= 0):
                results += 1
                pre_diff = cur_diff
            # cur_diff == 0 忽略,趋势不变

        return results

LeetCode:53. 最大子序和

https://leetcode.cn/problems/maximum-subarray/description/

思路

遍历数组,考量以 numsi 结尾的连续子数组的最大和,记作 cur_max。则有:

(1)将 nums[i] 加入之前的子数组,即 cur_max + nums[i]

(2)重新开始一个新的子数组,只包含 nums[i] 本身。

选择两者中较大的一个作为新的 cur_max ,同时更新 global_max

最后,global_max 即为答案。

解答

python 复制代码
class Solution:
    def maxSubArray(self, nums: List[int]) -> int:
        cur_max = global_max = nums[0]

        for num in nums[1:]: # 第一个元素既是当前最大,也是全局最大
            cur_max = max(num, cur_max + num) # 当前最大子数组要么是之前的最大子数组+当前值,要么从当前元素重新开始
            global_max = max(global_max, cur_max) # 更新全局最大子数组和

        return global_max
相关推荐
小欣加油11 小时前
leetcode2161 根据给定数字划分数组
数据结构·c++·算法·leetcode·职场和发展
李可以量化11 小时前
量化之MiniQMT 实战:一键读取通达信自选股并实时监控涨跌幅(附完整可运行代码)
开发语言·python·量化·qmt·ptrade
Momo__zz11 小时前
零代码平台设计
算法·深度优先
CTA量化套保11 小时前
一个账户跑多个期货策略:仓位与报单隔离思路
python·区块链
机汇五金_11 小时前
影响交换机箱体使用寿命的几个关键因素
运维·服务器·网络·python
子午11 小时前
基于DeepSeek的酒店客房管理系统~Python+DeepSeek智能问答+Vue3+Web网站系统
开发语言·前端·python
cpp_250111 小时前
P2947 [USACO09MAR] Look Up S
数据结构·c++·算法·题解·单调栈·洛谷
编程大师哥11 小时前
最高效的 IO 并发方案
linux·网络·python
Hello:CodeWorld11 小时前
Dify 从入门到实战:部署、模型对接与企业级 AI 应用开发全教程
人工智能·python·架构·ai编程
本地化文档11 小时前
black-docs-l10n
python·github·gitcode·sphinx