Leetcode 1425: DP + 单调队列

  1. Constrained Subsequence Sum
    Hard

Given an integer array nums and an integer k, return the maximum sum of a non-empty subsequence of that array such that for every two consecutive integers in the subsequence, numsi and numsj, where i < j, the condition j - i <= k is satisfied.

A subsequence of an array is obtained by deleting some number of elements (can be zero) from the array, leaving the remaining elements in their original order.

Example 1:

Input: nums = 10,2,-10,5,20, k = 2

Output: 37

Explanation: The subsequence is 10, 2, 5, 20.

Example 2:

Input: nums = -1,-2,-3, k = 1

Output: -1

Explanation: The subsequence must be non-empty, so we choose the largest number.

Example 3:

Input: nums = 10,-2,-10,-5,20, k = 2

Output: 23

Explanation: The subsequence is 10, -2, -5, 20.

Constraints:

1 <= k <= nums.length <= 105

-104 <= numsi <= 104

解法1:DP。会超时。

cpp 复制代码
class Solution {
public:
    int constrainedSubsetSum(vector<int>& nums, int k) {
        int n = nums.size();
        vector<int> dp(n, INT_MIN / 3);
        dp[0] = nums[0];
        int res = dp[0];
        for (int i = 1; i < n; i++) {
            dp[i] = nums[i];
            for (int j = 1; j <= k; j++) {
                
                if (i >= j) {
                    dp[i] = max(dp[i], dp[i - j] + nums[i]);
                }       
            }
            res = max(res, dp[i]);
        }
       
        return res;
    }
};

解法2:DP+单调队列。注意单调队列本身就是一个滑动窗口。

cpp 复制代码
class Solution {
public:
    int constrainedSubsetSum(vector<int>& nums, int k) {
        int n = nums.size();
        vector<int> dp(n, INT_MIN / 3);
        dp[0] = nums[0];
        int res = dp[0];
        deque<int> dq;
        dq.push_back(0);
        for (int i = 1; i < n; i++) {
            while (!dq.empty() && i - dq.front() > k) dq.pop_front(); 
            dp[i] = max(nums[i], dp[dq.front()] + nums[i]);
            while (!dq.empty() && dp[dq.back()] < dp[i]) dq.pop_back();
            dq.push_back(i);
            res = max(res, dp[i]);
        }
        return res;
    }
};
相关推荐
157092511345 小时前
【无标题】
开发语言·python·算法
稚南城才子,乌衣巷风流5 小时前
换根法(Rerooting)算法详解
算法
晓子文集5 小时前
Tushare接口文档:期货交易日历(fut_trade_cal)
大数据·算法
^yi6 小时前
【Linux系统编程】进程状态的理解
算法·僵尸进程·孤儿进程·进程状态·挂起状态·阻塞状态
冻柠檬飞冰走茶7 小时前
PTA基础编程题目集 7-7 12-24小时制(C语言实现)
c语言·开发语言·数据结构·算法
雨落在了我的手上7 小时前
Java数据结构(八):双链表的实现
数据结构
长不胖的路人甲7 小时前
二叉排序树(BST)Java 完整实现 + 删除思路详解
java·开发语言·算法
geovindu7 小时前
python: Breadth First Search Algorithm and Depth First Search Algorithm
开发语言·后端·python·算法·搜索算法
长不胖的路人甲7 小时前
可达性分析法(根搜索算法)完整详解
java·jvm·算法
runafterhit7 小时前
python基础语法命令(C程序员刷leetcode)
c语言·python·leetcode