• LeetCode——动态规划篇(六)


    刷题顺序及思路来源于代码随想录,网站地址:https://programmercarl.com 

    目录

    300. 最长递增子序列 - 力扣(LeetCode)

    674. 最长连续递增序列 - 力扣(LeetCode)

    718. 最长重复子数组 - 力扣(LeetCode)

    1143. 最长公共子序列 - 力扣(LeetCode)

    1035. 不相交的线 - 力扣(LeetCode)


    300. 最长递增子序列 - 力扣(LeetCode)

    给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。

    子序列 是由数组派生而来的序列,删除(或不删除)数组中的元素而不改变其余元素的顺序。例如,[3,6,2,7] 是数组 [0,3,1,6,2,2,7] 的子序列。

    1. 输入:nums = [10,9,2,5,3,7,101,18]
    2. 输出:4
    3. 解释:最长递增子序列是 [2,3,7,101],因此长度为 4
    1. import java.util.Arrays;
    2. /**
    3. * @author light
    4. * @Description 最长递增子序列
    5. *
    6. *
    7. * (思路:数组中只要有递增的就行,无需连续
    8. * 动态规划--弄明白dp数组所表示的含义
    9. * dp[i]:nums[i]之前(包括nums[i])的字序列最大递增子序列长度为dp[i]
    10. * @create 2023-10-15 9:50
    11. */
    12. public class LengthOfLISTest {
    13. public static void main(String[] args) {
    14. int[] nums={0,1,0,3,2};
    15. System.out.println(lengthOfLIS(nums));
    16. }
    17. public static int lengthOfLIS(int[] nums) {
    18. int[] dp=new int[nums.length];
    19. Arrays.fill(dp, 1);//初始化
    20. int result=1;
    21. for (int i = 1; i < nums.length; i++) {
    22. for (int j = 0; j < i; j++) {
    23. if (nums[i] > nums[j]) dp[i] = Math.max(dp[i], dp[j] + 1);
    24. }
    25. if (dp[i] > result) result = dp[i]; // 取长的子序列
    26. }
    27. return result;
    28. }
    29. }

    674. 最长连续递增序列 - 力扣(LeetCode)

    给定一个未经排序的整数数组,找到最长且 连续递增的子序列,并返回该序列的长度。

    连续递增的子序列 可以由两个下标 l 和 rl < r)确定,如果对于每个 l <= i < r,都有 nums[i] < nums[i + 1] ,那么子序列 [nums[l], nums[l + 1], ..., nums[r - 1], nums[r]] 就是连续递增子序列。

    1. import java.util.Arrays;
    2. /**
    3. * @author light
    4. * @Description 最长连续递增的子序列
    5. * (思路:只需考虑nums[i]和nums[i-1]
    6. * @create 2023-10-15 10:49
    7. */
    8. public class FindLengthOfLCISTest {
    9. public int findLengthOfLCIS(int[] nums) {
    10. int[] dp=new int[nums.length];
    11. Arrays.fill(dp,1);
    12. int res=1;
    13. for (int i = 1; i < nums.length; i++) {
    14. if(nums[i]>nums[i-1]){
    15. dp[i]=dp[i-1]+1;
    16. }
    17. res=Math.max(dp[i],res);
    18. }
    19. return res;
    20. }
    21. }

    718. 最长重复子数组 - 力扣(LeetCode)

    给两个整数数组 nums1 和 nums2 ,返回 两个数组中 公共的 、长度最长的子数组的长度 

    1. 输入:nums1 = [1,2,3,2,1], nums2 = [3,2,1,4,7]
    2. 输出:3
    3. 解释:长度最长的公共子数组是 [3,2,1] 。
    1. /**
    2. * @author light
    3. * @Description 最长重复子数组
    4. *
    5. * 给两个整数数组 nums1 和 nums2 ,返回 两个数组中 公共的 、长度最长的子数组的长度 。
    6. *
    7. * (思路:搞清dp数组含义
    8. * dp[i][j]:以i-1为结尾的数组nums1和以j-1为结尾的数组nums2的最长重复子数组长度为dp[i][j]
    9. * 比以i,j为结尾的好处:简化了dp数组的初始化;使得dp[i][0]和dp[0][j]没有意义
    10. * @create 2023-10-15 13:38
    11. */
    12. public class FindLengthTest {
    13. public int findLength(int[] nums1, int[] nums2) {
    14. //dp[i][j]:以i-1为结尾的数组nums1和以j-1为结尾的数组nums2的最长重复子数组长度为dp[i][j]
    15. int[][] dp=new int[nums1.length+1][nums2.length+1];
    16. int res=0;
    17. for (int i = 1; i <=nums1.length; i++) {
    18. for (int j = 1; j <=nums2.length; j++) {
    19. if(nums1[i-1]==nums2[j-1]){
    20. dp[i][j]=dp[i-1][j-1]+1;
    21. }
    22. res= Math.max(dp[i][j],res);
    23. }
    24. }
    25. return res;
    26. }
    27. }

    1143. 最长公共子序列 - 力扣(LeetCode)

    给定两个字符串 text1 和 text2,返回这两个字符串的最长 公共子序列 的长度。如果不存在 公共子序列 ,返回 0 。

    一个字符串的 子序列 是指这样一个新的字符串:它是由原字符串在不改变字符的相对顺序的情况下删除某些字符(也可以不删除任何字符)后组成的新字符串。

    • 例如,"ace" 是 "abcde" 的子序列,但 "aec" 不是 "abcde" 的子序列。

    两个字符串的 公共子序列 是这两个字符串所共同拥有的子序列。

    1. 输入:text1 = "abcde", text2 = "ace"
    2. 输出:3
    3. 解释:最长公共子序列是 "ace" ,它的长度为 3
    1. /**
    2. * @author light
    3. * @Description 最长公共子序列
    4. *
    5. * (不要求连续,但不能改变顺序
    6. * @create 2023-10-16 12:46
    7. */
    8. public class LongestCommonSubsequenceTest {
    9. public int longestCommonSubsequence(String text1, String text2) {
    10. //下标为[0,i-1]的text1和下标为[0,j-1]的text2中,最长公共子序列长度为dp[i][j]
    11. int[][] dp=new int[text1.length()+1][text2.length()+1];
    12. for (int i = 1; i <=text1.length(); i++) {
    13. for (int j = 1; j <=text2.length(); j++) {
    14. if(text1.charAt(i-1)==text2.charAt(j-1)){
    15. dp[i][j]=dp[i-1][j-1]+1;
    16. }else {
    17. dp[i][j]=Math.max(dp[i-1][j],dp[i][j-1]);
    18. }
    19. }
    20. }
    21. return dp[text1.length()][text2.length()];
    22. }
    23. }

    1035. 不相交的线 - 力扣(LeetCode)

    在两条独立的水平线上按给定的顺序写下 nums1 和 nums2 中的整数。

    现在,可以绘制一些连接两个数字 nums1[i] 和 nums2[j] 的直线,这些直线需要同时满足满足:

    •  nums1[i] == nums2[j]
    • 且绘制的直线不与任何其他连线(非水平线)相交。

    请注意,连线即使在端点也不能相交:每个数字只能属于一条连线。

    以这种方法绘制线条,并返回可以绘制的最大连线数。

    1. /**
    2. * @author light
    3. * @Description 不相交的线
    4. *
    5. * (思路:直线不能相交,这就是说明在字符串A中 找到一个与字符串B相同的子序列,
    6. * 且这个子序列不能改变相对顺序,只要相对顺序不改变,链接相同数字的直线就不会相交。
    7. *
    8. * 本质,求两数组最长公共子序列长度
    9. * @create 2023-10-16 13:11
    10. */
    11. public class MaxUncrossedLinesTest {
    12. public int maxUncrossedLines(int[] nums1, int[] nums2) {
    13. //dp[i][j]:[0,i-1]的数组nums1,[0,j-1]的数组nums2的公共子序列长度为dp[i][j]
    14. int[][] dp=new int[nums1.length+1][nums2.length+1];
    15. for (int i = 1; i <= nums1.length; i++) {
    16. for (int j = 1; j <=nums2.length; j++) {
    17. if(nums1[i-1]==nums2[j-1]){
    18. dp[i][j]=dp[i-1][j-1]+1;
    19. }else {
    20. dp[i][j]=Math.max(dp[i-1][j],dp[i][j-1]);
    21. }
    22. }
    23. }
    24. return dp[nums1.length][nums2.length];
    25. }
    26. }

  • 相关阅读:
    Django 模型相关
    0基础跟我学python---Django(2)
    如何通过图片提取文献图里的数据点
    关于go和rust语言的对比
    同三维T80004EHL-W-4K30 4K HDMI编码器,支持WEBRTC协议
    分类问题经典算法 | 二分类问题 | Logistic回归:梯度下降
    读书笔记:彼得·德鲁克《认识管理》第29章 有效决策
    Mybatis-Plus的使用
    PHP包含读文件写文件
    【Linux】:命令行参数
  • 原文地址:https://blog.csdn.net/zssxcj/article/details/133838246