309. Best Time to Buy and Sell Stock with Cooldown

양성준·2025년 7월 6일

코딩테스트

목록 보기
89/102

문제

https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/description/

풀이

class Solution {
    public int maxProfit(int[] prices) {
        int n = prices.length;
        int[][] dp = new int[n][2];
        dp[0][0] = 0;
        dp[0][1] = -prices[0];

        for(int i = 1; i < n; i++) {
            dp[i][0] = Math.max(dp[i-1][0], dp[i-1][1] + prices[i]);
            if(i == 1) {
                dp[i][1] = Math.max(dp[i-1][1], dp[i-1][0] - prices[i]);
            } else {
            dp[i][1] = Math.max(dp[i-1][1], dp[i-2][0] - prices[i]);
            } // 어제 판 경우라면 사면 안되므로, 이틀전걸로 계산
        }

        return dp[n-1][0];
    }
}
profile
백엔드 개발자

0개의 댓글