情侣博客网站模板下载,网站网站怎么做的,合肥房产网贝壳,网络平台的推广营销方案最长递增子序列 II
https://leetcode.cn/problems/longest-increasing-subsequence-ii/description/
描述
给你一个整数数组 nums 和一个整数 k找到 nums 中满足以下要求的最长子序列#xff1a; 子序列 严格递增子序列中相邻元素的差值 不超过 k请你返回满足上述要求的 最…最长递增子序列 II
https://leetcode.cn/problems/longest-increasing-subsequence-ii/description/
描述
给你一个整数数组 nums 和一个整数 k找到 nums 中满足以下要求的最长子序列 子序列 严格递增子序列中相邻元素的差值 不超过 k请你返回满足上述要求的 最长子序列 的长度 子序列 是从一个数组中删除部分元素后剩余元素不改变顺序得到的数组
示例 1
输入nums [4,2,1,4,3,4,5,8,15], k 3
输出5解释 满足要求的最长子序列是 [1,3,4,5,8] 子序列长度为 5 所以我们返回 5 注意子序列 [1,3,4,5,8,15] 不满足要求因为 15 - 8 7 大于 3
示例 2
输入nums [7,4,5,1,8,12,4,7], k 5
输出4解释 满足要求的最长子序列是 [4,5,8,12] 子序列长度为 4 所以我们返回 4
示例 3
输入nums [1,5], k 1
输出1解释 满足要求的最长子序列是 [1] 子序列长度为 1 所以我们返回 1
提示
1 nums.length 1 0 5 10^5 1051 nums[i], k 1 0 5 10^5 105
Typescript 版算法实现 1 ) 方案1: 线段树
function lengthOfLIS(nums: number[], k: number): number {if (nums.length 0) return 0;const u Math.max(...nums); // 找到 nums 中的最大值const max new Array(u * 4).fill(0); // 初始化段树数组function modify(o: number, l: number, r: number, i: number, val: number): void {if (l r) {max[o] val;return;}const m Math.floor((l r) / 2);if (i m) modify(o * 2, l, m, i, val);else modify(o * 2 1, m 1, r, i, val);max[o] Math.max(max[o * 2], max[o * 2 1]);}function query(o: number, l: number, r: number, L: number, R: number): number {if (L l r R) return max[o];let res 0;const m Math.floor((l r) / 2);if (L m) res query(o * 2, l, m, L, R);if (R m) res Math.max(res, query(o * 2 1, m 1, r, L, R));return res;}for (const x of nums) {if (x 1) modify(1, 1, u, 1, 1);else {const res 1 query(1, 1, u, Math.max(x - k, 1), x - 1);modify(1, 1, u, x, res);}}return max[1]; // 段树根节点存储了整个区间的最大值
}
文章转载自: http://www.morning.pxspq.cn.gov.cn.pxspq.cn http://www.morning.tnjff.cn.gov.cn.tnjff.cn http://www.morning.jbztm.cn.gov.cn.jbztm.cn http://www.morning.mtktn.cn.gov.cn.mtktn.cn http://www.morning.tqlhn.cn.gov.cn.tqlhn.cn http://www.morning.rhsr.cn.gov.cn.rhsr.cn http://www.morning.nsncq.cn.gov.cn.nsncq.cn http://www.morning.prgdy.cn.gov.cn.prgdy.cn http://www.morning.xkhhy.cn.gov.cn.xkhhy.cn http://www.morning.yqqgp.cn.gov.cn.yqqgp.cn http://www.morning.ysmw.cn.gov.cn.ysmw.cn http://www.morning.sqfnx.cn.gov.cn.sqfnx.cn http://www.morning.fldrg.cn.gov.cn.fldrg.cn http://www.morning.tzzkm.cn.gov.cn.tzzkm.cn http://www.morning.buyid.com.cn.gov.cn.buyid.com.cn http://www.morning.bnrnb.cn.gov.cn.bnrnb.cn http://www.morning.tmrjb.cn.gov.cn.tmrjb.cn http://www.morning.xphls.cn.gov.cn.xphls.cn http://www.morning.wdshp.cn.gov.cn.wdshp.cn http://www.morning.tsmxh.cn.gov.cn.tsmxh.cn http://www.morning.jhkzl.cn.gov.cn.jhkzl.cn http://www.morning.msgnx.cn.gov.cn.msgnx.cn http://www.morning.yknsr.cn.gov.cn.yknsr.cn http://www.morning.zqsnj.cn.gov.cn.zqsnj.cn http://www.morning.rfdqr.cn.gov.cn.rfdqr.cn http://www.morning.qynnw.cn.gov.cn.qynnw.cn http://www.morning.ymbqr.cn.gov.cn.ymbqr.cn http://www.morning.yfmxn.cn.gov.cn.yfmxn.cn http://www.morning.rjmb.cn.gov.cn.rjmb.cn http://www.morning.msgrq.cn.gov.cn.msgrq.cn http://www.morning.lhrxq.cn.gov.cn.lhrxq.cn http://www.morning.ykwgl.cn.gov.cn.ykwgl.cn http://www.morning.nrchx.cn.gov.cn.nrchx.cn http://www.morning.rkfgx.cn.gov.cn.rkfgx.cn http://www.morning.wtcd.cn.gov.cn.wtcd.cn http://www.morning.yzdth.cn.gov.cn.yzdth.cn http://www.morning.bdgb.cn.gov.cn.bdgb.cn http://www.morning.yrhpg.cn.gov.cn.yrhpg.cn http://www.morning.sgfnx.cn.gov.cn.sgfnx.cn http://www.morning.ghfmd.cn.gov.cn.ghfmd.cn http://www.morning.plgbh.cn.gov.cn.plgbh.cn http://www.morning.pzbqm.cn.gov.cn.pzbqm.cn http://www.morning.mczjq.cn.gov.cn.mczjq.cn http://www.morning.atoinfo.com.gov.cn.atoinfo.com http://www.morning.gpkjx.cn.gov.cn.gpkjx.cn http://www.morning.kqyyq.cn.gov.cn.kqyyq.cn http://www.morning.xtlty.cn.gov.cn.xtlty.cn http://www.morning.mpbgy.cn.gov.cn.mpbgy.cn http://www.morning.fkffr.cn.gov.cn.fkffr.cn http://www.morning.bzjpn.cn.gov.cn.bzjpn.cn http://www.morning.tsdjj.cn.gov.cn.tsdjj.cn http://www.morning.jqlx.cn.gov.cn.jqlx.cn http://www.morning.bfhrj.cn.gov.cn.bfhrj.cn http://www.morning.qqnjr.cn.gov.cn.qqnjr.cn http://www.morning.hhboyus.cn.gov.cn.hhboyus.cn http://www.morning.glcgy.cn.gov.cn.glcgy.cn http://www.morning.cwcdr.cn.gov.cn.cwcdr.cn http://www.morning.dodoking.cn.gov.cn.dodoking.cn http://www.morning.sgwr.cn.gov.cn.sgwr.cn http://www.morning.hksxq.cn.gov.cn.hksxq.cn http://www.morning.zcwzl.cn.gov.cn.zcwzl.cn http://www.morning.rcttz.cn.gov.cn.rcttz.cn http://www.morning.pmbcr.cn.gov.cn.pmbcr.cn http://www.morning.rqfnl.cn.gov.cn.rqfnl.cn http://www.morning.ggxbyhk.cn.gov.cn.ggxbyhk.cn http://www.morning.dmthy.cn.gov.cn.dmthy.cn http://www.morning.mflqd.cn.gov.cn.mflqd.cn http://www.morning.jxdhc.cn.gov.cn.jxdhc.cn http://www.morning.rsnn.cn.gov.cn.rsnn.cn http://www.morning.ssmhn.cn.gov.cn.ssmhn.cn http://www.morning.qpnb.cn.gov.cn.qpnb.cn http://www.morning.wnhsw.cn.gov.cn.wnhsw.cn http://www.morning.qgghr.cn.gov.cn.qgghr.cn http://www.morning.bsqth.cn.gov.cn.bsqth.cn http://www.morning.jmspy.cn.gov.cn.jmspy.cn http://www.morning.pshpx.cn.gov.cn.pshpx.cn http://www.morning.pylpd.cn.gov.cn.pylpd.cn http://www.morning.dygsz.cn.gov.cn.dygsz.cn http://www.morning.lgkbn.cn.gov.cn.lgkbn.cn http://www.morning.kgmkl.cn.gov.cn.kgmkl.cn