首页 > 代码库 > [LeetCode]Best Time to Buy and Sell Stock III
[LeetCode]Best Time to Buy and Sell Stock III
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 two transactions.
Note:
You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
下面为具体的实现 ps:可以同一天买入卖出
public class Solution { public int maxProfit(int[] prices) { if(prices.length<2) return 0; int []left =new int[prices.length]; int []right = new int[prices.length]; int minVal = prices[0]; for(int i=1;i<prices.length;i++){ minVal = Math.min(minVal, prices[i]); left[i] = Math.max(left[i-1], prices[i]-minVal); } int maxVal = prices[prices.length-1]; for(int i=prices.length-2;i>=0;i--){ maxVal = Math.max(maxVal, prices[i]); right[i] = Math.max(right[i+1], maxVal -prices[i]); } int res = left[0]+right[0]; for(int i=1;i<prices.length;i++){ res = Math.max(res, left[i]+right[i]); } return res; } }
[LeetCode]Best Time to Buy and Sell Stock III
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。