【问题标题】:Why am I finding the longest increasing subsequence instead of the longest decreasing subsequence?为什么我找到最长的递增子序列而不是最长的递减子序列?
【发布时间】:2019-04-19 11:00:30
【问题描述】:

我试图在 O(nlogn) 的数组中寻找最长的递减子序列。不确定这是否真的需要 O(nlogn),但无论如何这会返回最长递增子序列的长度,而不是最长递减子序列的长度。谁能帮忙?!?

def binary_search(L, l, r, key): 
    while (r - l > 1): 
        m = l + (r - l)//2
        if (L[m] >= key): 
            r = m 
        else: 
            l = m 
    return r 

def LongestDecreasingSubsequenceLength(L, size): 
    tailTable = [0 for i in range(size + 1)] 
    len = 0 
    tailTable[0] = L[0] 
    len = 1
    for i in range(1, size): 
        if (L[i] < tailTable[0]): 
            # new smallest value 
            tailTable[0] = L[i] 
        elif (L[i] > tailTable[len-1]): 
            tailTable[len] = L[i] 
            len+= 1
        else: 
            tailTable[binary_search(tailTable, -1, len-1, L[i])] = L[i]
    return len

L = [ 38, 20, 15, 30, 90, 14, 6, 7] 
n = len(L) 


print("Length of Longest Decreasing Subsequence is ", 
   LongestDecreasingSubsequenceLength(L, n))

【问题讨论】:

  • 我不明白“最长递减子序列”?不会遍历列表一次,如果下一个较小则增加,如果下一个较大则存储更简单?
  • 在大多数情况下,这意味着某些测试的顺序错误

标签: python algorithm subsequence


【解决方案1】:

如果您愿意以任何方式看待它,Wikipedia 有一些伪代码可以轻松转移到 Python 中并翻转为递减子序列。

N = len(X)
P = np.zeros(N, dtype=np.int)
M =  np.zeros(N+1, dtype=np.int)

L = 0
for i in range(0, N-1):
    # Binary search for the largest positive j ≤ L
    # such that X[M[j]] <= X[i]
    lo = 1
    hi = L
    while lo <= hi:
        mid = (lo+hi)//2

        if X[M[mid]] >= X[i]:
            lo = mid+1
        else:
            hi = mid-1
    # After searching, lo is 1 greater than the
    # length of the longest prefix of X[i]
    newL = lo

    # The predecessor of X[i] is the last index of 
    # the subsequence of length newL-1
    P[i] = M[newL-1]
    M[newL] = i
    #print(i)
    if newL > L:
        # If we found a subsequence longer than any we've
        # found yet, update L
        L = newL

# Reconstruct the longest increasing subsequence
S = np.zeros(L, dtype=np.int)
k = M[L]
for i in range(L-1, -1, -1):
    S[i] = X[k]
    k = P[k]

S

这给出了你所追求的序列

array([38, 20, 15, 14,  6])

【讨论】:

  • 我觉得这也不对...你可以清楚的看到最长的递减子序列是5 (38, 20, 15, 14, 6)
  • 啊,好吧,不清楚这就是你想要的。您能否用预期的结果更新您的问题,以及为什么这样做的更多原因?这是如果你在最长的 连续 序列之后
猜你喜欢
  • 2016-04-11
  • 1970-01-01
  • 1970-01-01
  • 2013-07-03
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多