Leetcode 3117. Minimum Sum of Values by Dividing Array

  • [Leetcode 3117. Minimum Sum of Values by Dividing Array](#Leetcode 3117. Minimum Sum of Values by Dividing Array)
    • [1. 解题思路](#1. 解题思路)
    • [2. 代码实现](#2. 代码实现)

1. 解题思路

这一题思路上就是一个动态规划,我们只需要考察每一个元素是否需要放在当前的group当中还是作为新的group的开始元素,然后在所有的可能结果当中取最小值即可。

2. 代码实现

给出python代码实现如下:

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

        @lru_cache(None)
        def dp(idx, k, pre):
            if idx >= n:
                return 0 if k >= m else math.inf
            if k >= m:
                return math.inf
            if pre & nums[idx] < andValues[k]:
                return math.inf
            elif pre & nums[idx] == andValues[k]:
                return min(nums[idx] + dp(idx+1, k+1, nums[idx+1] if idx+1 < n else -1), dp(idx+1, k, pre & nums[idx]))
            else:
                return dp(idx+1, k, pre & nums[idx])
        
        ans = dp(0, 0, nums[0])
        return ans if ans != math.inf else -1

提交代码评测得到:耗时1353ms,占用内存414.1MB。

相关推荐
浩少70215 小时前
LeetCode-22day:多维动态规划
算法·leetcode·动态规划
拼好饭和她皆失1 天前
算法加训 动态规划熟悉30题 ---下
算法·动态规划
天选之女wow3 天前
【LeetCode】动态规划——542.01 矩阵
leetcode·矩阵·动态规划
等风来不如迎风去4 天前
【动态规划】309. 买卖股票的最佳时机含冷冻期及动态规划模板
算法·动态规划
Jasmine_llq5 天前
《CF1120D Power Tree》
动态规划·dp·深度优先搜索(dfs)·广度优先搜索(bfs)·树结构处理技术·状态回溯技术
岁忧8 天前
(nice!!!)(LeetCode 每日一题) 1277. 统计全为 1 的正方形子矩阵 (动态规划)
java·c++·算法·leetcode·矩阵·go·动态规划
我家大宝最可爱9 天前
动态规划:入门思考篇
算法·动态规划·代理模式
自信的小螺丝钉9 天前
Leetcode 343. 整数拆分 动态规划
算法·leetcode·动态规划
Tisfy10 天前
LeetCode 837.新 21 点:动态规划+滑动窗口
数学·算法·leetcode·动态规划·dp·滑动窗口·概率
利刃大大10 天前
【动态规划:路径问题】最小路径和 && 地下城游戏
算法·动态规划·cpp·路径问题