📜  最大和调子序列

📅  最后修改于: 2021-04-29 19:00:47             🧑  作者: Mango

给定一个整数数组。如果arr []的子序列先增大然后减小,则称为Bitonic。

例子 :

Input : arr[] = {1, 15, 51, 45, 33, 
                   100, 12, 18, 9}
Output : 194
Explanation : Bi-tonic Sub-sequence are :
             {1, 51, 9} or {1, 50, 100, 18, 9} or
             {1, 15, 51, 100, 18, 9}  or 
             {1, 15, 45, 100, 12, 9}  or 
             {1, 15, 45, 100, 18, 9} .. so on            
Maximum sum Bi-tonic sub-sequence is 1 + 15 +
51 + 100 + 18 + 9 = 194   

Input : arr[] = {80, 60, 30, 40, 20, 10} 
Output : 210  

此问题是标准最长增加子序列(LIS)问题和最长双子序列的变体。

我们构造了两个数组MSIBS []和MSDBS []。 MSIBS [i]存储以arr [i]结尾的递增子序列的总和。 MSDBS [i]存储从arr [i]开始的递减子序列的总和。最后,我们需要返回MSIBS [i] + MSDBS [i] – Arr [i]的最大和。

以下是上述想法的实现

C/C++
// C++ program to find maximum sum of bi-tonic sub-sequence
#include 
using namespace std;
  
// Function return maximum sum of Bi-tonic sub-sequence
int MaxSumBS(int arr[], int n)
{
    int max_sum = INT_MIN;
  
    // MSIBS[i] ==> Maximum sum Increasing Bi-tonic
    // subsequence ending with arr[i]
    // MSDBS[i] ==> Maximum sum Decreasing Bi-tonic
    // subsequence starting with arr[i]
    // Initialize MSDBS and MSIBS values as arr[i] for
    // all indexes
    int MSIBS[n], MSDBS[n];
    for (int i = 0; i < n; i++) {
        MSDBS[i] = arr[i];
        MSIBS[i] = arr[i];
    }
  
    // Compute MSIBS values from left to right */
    for (int i = 1; i < n; i++)
        for (int j = 0; j < i; j++)
            if (arr[i] > arr[j] && MSIBS[i] < MSIBS[j] + arr[i])
                MSIBS[i] = MSIBS[j] + arr[i];
  
    // Compute MSDBS values from right to left
    for (int i = n - 2; i >= 0; i--)
        for (int j = n - 1; j > i; j--)
            if (arr[i] > arr[j] && MSDBS[i] < MSDBS[j] + arr[i])
                MSDBS[i] = MSDBS[j] + arr[i];
  
    // Find the maximum value of MSIBS[i] + MSDBS[i] - arr[i]
    for (int i = 0; i < n; i++)
        max_sum = max(max_sum, (MSDBS[i] + MSIBS[i] - arr[i]));
  
    // return max sum of bi-tonic sub-sequence
    return max_sum;
}
  
// Driver program
int main()
{
    int arr[] = { 1, 15, 51, 45, 33, 100, 12, 18, 9 };
    int n = sizeof(arr) / sizeof(arr[0]);
    cout << "Maximum Sum : " << MaxSumBS(arr, n);
  
    return 0;
}


Java
// java program to find maximum
// sum of bi-tonic sub-sequence
import java.io.*;
  
class GFG {
  
    // Function return maximum sum
    // of Bi-tonic sub-sequence
    static int MaxSumBS(int arr[], int n)
    {
        int max_sum = Integer.MIN_VALUE;
  
        // MSIBS[i] ==> Maximum sum Increasing Bi-tonic
        // subsequence ending with arr[i]
        // MSDBS[i] ==> Maximum sum Decreasing Bi-tonic
        // subsequence starting with arr[i]
        // Initialize MSDBS and MSIBS values as arr[i] for
        // all indexes
        int MSIBS[] = new int[n];
        int MSDBS[] = new int[n];
        for (int i = 0; i < n; i++) {
            MSDBS[i] = arr[i];
            MSIBS[i] = arr[i];
        }
  
        // Compute MSIBS values from left to right */
        for (int i = 1; i < n; i++)
            for (int j = 0; j < i; j++)
                if (arr[i] > arr[j] && MSIBS[i] < MSIBS[j] + arr[i])
                    MSIBS[i] = MSIBS[j] + arr[i];
  
        // Compute MSDBS values from right to left
        for (int i = n - 2; i >= 0; i--)
            for (int j = n - 1; j > i; j--)
                if (arr[i] > arr[j] && MSDBS[i] < MSDBS[j] + arr[i])
                    MSDBS[i] = MSDBS[j] + arr[i];
  
        // Find the maximum value of MSIBS[i] +
        // MSDBS[i] - arr[i]
        for (int i = 0; i < n; i++)
            max_sum = Math.max(max_sum, (MSDBS[i] + MSIBS[i] - arr[i]));
  
        // return max sum of bi-tonic
        // sub-sequence
        return max_sum;
    }
  
    // Driver program
    public static void main(String[] args)
    {
        int arr[] = { 1, 15, 51, 45, 33, 100, 12, 18, 9 };
        int n = arr.length;
        System.out.println("Maximum Sum : " + MaxSumBS(arr, n));
    }
}
  
// This code is contributed by vt_m


Python
# Dynamic Programming implementation of maximum sum of bitonic subsequence 
  
# Function return maximum sum of Bi-tonic sub-sequence
def max_sum(arr, n):
  
    # MSIBS[i] ==> Maximum sum Increasing Bi-tonic
    # subsequence ending with arr[i]
    # MSDBS[i] ==> Maximum sum Decreasing Bi-tonic
    # subsequence starting with arr[i]
  
    # allocate memory for MSIBS and initialize it to arr[i] for
    # all indexes
    MSIBS = arr[:]
  
    # Compute MSIBS values from left to right
    for i in range(n):
  
        for j in range(0, i):
  
            if arr[i] > arr[j] and MSIBS[i] < MSIBS[j] + arr[i]:
  
                MSIBS[i] = MSIBS[j] + arr[i]
  
    # allocate memory for MSDBS and initialize it to arr[i] for
    # all indexes
    MSDBS = arr[:]
  
    # Compute MSDBS values from right to left
    for i in range(1, n + 1):
  
        for j in range(1, i):
  
            if arr[-i] > arr[-j] and MSDBS[-i] < MSDBS[-j] + arr[-i]:
      
                MSDBS[-i] = MSDBS[-j] + arr[-i]
  
    max_sum = float("-Inf") 
  
    # Find the maximum value of MSIBS[i] + MSDBS[i] - arr[i]
    for i, j, k in zip(MSIBS, MSDBS, arr):
  
        max_sum = max(max_sum, i + j - k)
  
    # return max sum of bi-tonic sub-sequence
    return max_sum
  
  
# Driver program to test the above function
def main():
  
    arr = [1, 15, 51, 45, 33, 100, 12, 18, 9]
  
    n = len(arr)
  
    print max_sum(arr, n)
  
if __name__ == '__main__':
    main()
# This code is contributed by Neelam Yadav


C#
// C# program to find maximum
// sun of bi-tonic sub-sequence
using System;
  
class GFG {
  
    // Function return maximum sum
    // of Bi-tonic sub-sequence
    static int MaxSumBS(int[] arr, int n)
    {
        int max_sum = int.MinValue;
  
        // MSIBS[i] ==> Maximum sum Increasing Bi-tonic
        // subsequence ending with arr[i]
        // MSDBS[i] ==> Maximum sum Decreasing Bi-tonic
        // subsequence starting with arr[i]
        // Initialize MSDBS and MSIBS values as arr[i] for
        // all indexes
        int[] MSIBS = new int[n];
        int[] MSDBS = new int[n];
        for (int i = 0; i < n; i++) {
            MSDBS[i] = arr[i];
            MSIBS[i] = arr[i];
        }
  
        // Compute MSIBS values from left to right */
        for (int i = 1; i < n; i++)
            for (int j = 0; j < i; j++)
                if (arr[i] > arr[j] && MSIBS[i] < MSIBS[j] + arr[i])
                    MSIBS[i] = MSIBS[j] + arr[i];
  
        // Compute MSDBS values from right to left
        for (int i = n - 2; i >= 0; i--)
            for (int j = n - 1; j > i; j--)
                if (arr[i] > arr[j] && MSDBS[i] < MSDBS[j] + arr[i])
                    MSDBS[i] = MSDBS[j] + arr[i];
  
        // Find the maximum value of MSIBS[i] +
        // MSDBS[i] - arr[i]
        for (int i = 0; i < n; i++)
            max_sum = Math.Max(max_sum, (MSDBS[i] + MSIBS[i] - arr[i]));
  
        // return max sum of bi-tonic
        // sub-sequence
        return max_sum;
    }
  
    // Driver program
    public static void Main()
    {
        int[] arr = { 1, 15, 51, 45, 33, 100, 12, 18, 9 };
        int n = arr.Length;
        Console.WriteLine("Maximum Sum : " + MaxSumBS(arr, n));
    }
}
  
// This code is contributed by vt_m


PHP
 Maximum sum Increasing 
    // Bi-tonic subsequence ending with arr[i]
    // MSDBS[i] ==> Maximum sum Decreasing 
    // Bi-tonic subsequence starting with arr[i]
    // Initialize MSDBS and MSIBS values
    // as arr[i] for all indexes
    $MSIBS = array();
    $MSDBS = array();
    for ($i = 0; $i < $n; $i++) 
    {
        $MSDBS[$i] = $arr[$i];
        $MSIBS[$i] = $arr[$i];
    }
  
    // Compute MSIBS values
    // from left to right */
    for ($i = 1; $i < $n; $i++)
        for ($j = 0; $j < $i; $j++)
            if ($arr[$i] > $arr[$j] && 
                $MSIBS[$i] < $MSIBS[$j] + 
                             $arr[$i])
                $MSIBS[$i] = $MSIBS[$j] + 
                             $arr[$i];
  
    // Compute MSDBS values 
    // from right to left
    for ($i = $n - 2; $i >= 0; $i--)
        for ($j = $n - 1; $j > $i; $j--)
            if ($arr[$i] > $arr[$j] && 
                $MSDBS[$i] < $MSDBS[$j] + 
                             $arr[$i])
                $MSDBS[$i] = $MSDBS[$j] + 
                             $arr[$i];
  
    // Find the maximum value of
    // MSIBS[i] + MSDBS[i] - arr[i]
    for ($i = 0; $i < $n; $i++)
        $max_sum = max($max_sum, ($MSDBS[$i] + 
                                  $MSIBS[$i] - 
                                  $arr[$i]));
  
    // return max sum of 
    // bi-tonic sub-sequence
    return $max_sum;
}
  
// Driver Code
$arr = array(1, 15, 51, 45, 33, 
             100, 12, 18, 9);
$n = count($arr);
echo "Maximum Sum : " , 
      MaxSumBS($arr, $n);
  
// This code is contributed
// by shiv_bhakt.
?>


输出:

Maximum Sum : 194

时间复杂度:O(n 2 )