zoukankan      html  css  js  c++  java
  • 309. Best Time to Buy and Sell Stock with Cooldown java solutions

    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 as many transactions as you like (ie, buy one and sell one share of the stock multiple times) with the following restrictions:

    • You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
    • After you sell your stock, you cannot buy stock on next day. (ie, cooldown 1 day)

    Example:

    prices = [1, 2, 3, 0, 2]
    maxProfit = 3
    transactions = [buy, sell, cooldown, buy, sell]
    

    Credits:
    Special thanks to @dietpepsi for adding this problem and creating all test cases.

     1 public class Solution {
     2     public int maxProfit(int[] prices) {
     3         if(prices== null || prices.length <= 1) return 0;
     4         int inclusive = 0;//可能包括今天的profit
     5         int exclusive = 0;//不包括今天的profit
     6         for(int i = 1; i < prices.length; i++){
     7             int profit = prices[i] - prices[i-1];
     8             int newinclusive = Math.max(inclusive+profit,exclusive);
     9             int newexclusive = Math.max(inclusive,exclusive);
    10             inclusive = newinclusive;
    11             exclusive = newexclusive;
    12         }
    13         return Math.max(inclusive,exclusive);
    14     }
    15 }

    这题很特别在cooldown。等二刷的时候再过一遍,看到有其他大神使用 状态机和分治的greedy 做的。

  • 相关阅读:
    BUG记录之 Database Connection Can’t Be Open!
    C#基础拾遗03注册表保存用户设置
    JQuery Ajax小磨合1
    SQL Server几个常用Date函数(二)
    浅谈设计模式01策略模式
    C#基础拾遗02XML串行化
    SQL Server 2008 R2学习心得
    WebService重载问题
    SQL Server几个常用date函数(一)
    C#获取打印机列表
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5638324.html
Copyright © 2011-2022 走看看