1092. 最短公共超序列(Hard)

在这里插入图片描述

class Solution:
    def shortestCommonSupersequence(self, str1: str, str2: str) -> str:
        m = len(str1)
        n = len(str2)

        #--------------- 先找最长公共子序列LCS -----------------#
        dp = [["" for _ in range(n + 1)] for _ in range(m + 1)]
        for i in range(1, m + 1):
            for j in range(1, n + 1):
                if str1[i-1] == str2[j-1]:
                    dp[i][j] = dp[i-1][j-1] + str1[i-1]
                else:
                    if len(dp[i-1][j]) > len(dp[i][j-1]):
                        dp[i][j] = dp[i-1][j]
                    else:
                        dp[i][j] = dp[i][j-1]
        LCS = dp[m][n]

        #--------------------- 从前往后添加
        res = ""
        i = 0
        j = 0

        # 把LCS中的chr作为关键字符,把关键字符之间的字符插入(s1、s2均需要考虑)
        for c in LCS:
            # 考虑s1
            while i < m and str1[i] != c:
                res += str1[i]
                i += 1
            # 考虑s2
            while j < n and str2[j] != c:
                res += str2[j]
                j += 1

            # 加入LCS中的当前字符
            res += c
            i += 1
            j += 1

        res += str1[i:] # 追加剩下的字符(s1、s2均需要考虑)
        res += str2[j:]

        return res
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值