LeetCode in Kotlin

309. Best Time to Buy and Sell Stock with Cooldown

Medium

You are given an array prices where prices[i] is the price of a given stock on the ith day.

Find the maximum profit you can achieve. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times) with the following restrictions:

Note: You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).

Example 1:

Input: prices = [1,2,3,0,2]

Output: 3

Explanation: transactions = [buy, sell, cooldown, buy, sell]

Example 2:

Input: prices = [1]

Output: 0

Constraints:

Solution

class Solution {
    fun maxProfit(prices: IntArray): Int {
        var sell = 0
        var prevSell = 0
        var buy = Int.MIN_VALUE
        var prevBuy: Int
        for (price in prices) {
            prevBuy = buy
            buy = Math.max(prevSell - price, prevBuy)
            prevSell = sell
            sell = Math.max(prevBuy + price, prevSell)
        }
        return sell
    }
}