1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
//! Best Time to Buy and Sell Stock IV [leetcode: best_time_to_buy_and_sell_stock_IV](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/)
//!
//! Say you have an array for which the ith element is the price of a given stock on day *i*.
//!
//! Design an algorithm to find the maximum profit. You may complete at most *k* transactions.
//!
//! **Note**: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).
//!
//! ***Example1:***
//!
//! ```
//! Input: [2,4,1], k = 2
//! Output: 2
//! Explanation: Buy on day 1 (price = 2) and sell on day 2 (price = 4), profit = 4-2 = 2.
//! ```
//!
//! ***Example2:***
//!
//! ```
//! Input: [3,2,6,5,0,3], k = 2
//! Output: 7
//! Explanation: Buy on day 2 (price = 2) and sell on day 3 (price = 6), profit = 6-2 = 4.
//!              Then buy on day 5 (price = 0) and sell on day 6 (price = 3), profit = 3-0 = 3.
//! ```

use std::cmp::max;
/// # Solutions
///
/// # Approach 1: Dynamic Programming
///
/// * Time complexity: O(n*k)
///
/// * Space complexity: O(n)
///
/// * Runtime: 240 ms
/// * Memory: 223.8 MB
///
/// ```rust
/// use std::cmp;
///
/// impl Solution {
///     pub fn max_profit(k: i32, prices: Vec<i32>) -> i32 {
///         if prices.len() < 2 { return 0; }
///
///         let k = cmp::min(k as usize, prices.len() / 2 + 1);
///         let mut profits = vec![vec![0; prices.len()]; (k+1)];
///         let mut max_profit = 0;
///         for kk in 1..=k {
///             let mut tmp_max = profits[kk-1][0] - prices[0];
///             for i in 1..prices.len() {
///                 profits[kk][i] = cmp::max(profits[kk][i-1], prices[i] + tmp_max);
///                 tmp_max       = cmp::max(tmp_max, profits[kk-1][i] - prices[i]);
///                 max_profit    = cmp::max(profits[kk][i], max_profit);
///             }
///         }
///
///         max_profit
///
///     }
/// }
/// ```
///
/// # Approach 2: Dynamic Programming
///
/// * Time complexity: O(n*k)
///
/// * Space complexity: O(n)
///
/// * Runtime: 0 ms
/// * Memory: 2.9 MB
///
/// ```rust
/// use std::cmp::max;
///
/// impl Solution {
///     pub fn max_profit(k: i32, prices: Vec<i32>) -> i32 {
///         if prices.len() < 2 { return 0; }
///
///         let k = k as usize;
///         let mut max_profit = 0;
///         if k >= prices.len() / 2 {
///             for i in 1..prices.len() {
///                 max_profit += max(0, prices[i] - prices[i - 1]);
///             }
///
///             return max_profit;
///         }
///
///         let mut profits = vec![vec![0; prices.len()]; k+1];
///         for kk in 1..=k {
///             let mut tmp_max = profits[kk-1][0] - prices[0];
///             for i in 1..prices.len() {
///                 profits[kk][i] = max(profits[kk][i-1], prices[i] + tmp_max);
///                 tmp_max       = max(tmp_max, profits[kk-1][i] - prices[i]);
///                 max_profit    = max(profits[kk][i], max_profit);
///             }
///         }
///
///         max_profit
///
///     }
/// }
/// ```
///
pub fn max_profit(k: i32, prices: Vec<i32>) -> i32 {
    if prices.len() < 2 { return 0; }

    let k = k as usize;
    let mut max_profit = 0;
    // if k >= prices.len() / 2 as many transactions
    if k >= prices.len() / 2 {
        for i in 1..prices.len() {
            max_profit += max(0, prices[i] - prices[i - 1]);
        }

        return max_profit;
    }

    let mut profits = vec![vec![0; prices.len()]; k+1];
    for kk in 1..=k {
        let mut tmp_max = profits[kk-1][0] - prices[0];
        for i in 1..prices.len() {
            profits[kk][i] = max(profits[kk][i-1], prices[i] + tmp_max);
            tmp_max       = max(tmp_max, profits[kk-1][i] - prices[i]);
            max_profit    = max(profits[kk][i], max_profit);
        }
    }

    max_profit

}