123. 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).

这道题要求我们只做两笔最大的交易,不同于I和II,一个要做一笔交易,一个要做无限多的交易。这道题开始不是很会做,想着把数组分成两段,然后每段里面求一笔最大交易,后来发现并不可行。于是看了大神的做法,代码如下:

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px "Helvetica Neue"; color: #454545 }

public class Solution {

public int maxProfit(int[] prices) {

int lowestprice1 = Integer.MAX_VALUE;

int lowestprice2 = Integer.MAX_VALUE;

int profit1 = 0;

int profit2 = 0;

for(int p:prices){

profit2 = Math.max(profit2,p-lowestprice2);

lowestprice2 = Math.min(lowestprice2,p-profit1);

profit1 = Math.max(profit1,p-lowestprice1);

lowestprice1 = Math.min(lowestprice1,p);

}

return profit2;

}

}

方法如下:

we can see that lowestBuyPrice1 is always the lowest price in the input array, maxProfit1 keeps track of the biggest difference between prices and lowest price so far, value change of lowestBuyPrice2 reflects the local valley in the input prices array and variable maxProfit2 maintains the maximum profit until the current price.

lowestBuyPrice1 and maxProfit1 are easy to understand. But how does lowestBuyPrice2 and maxProfit2 works? First, we shall see that lowestBuyPrice2 decreases whenever we hit a local minimum price. It indirectly (since it is negative) reflects the lowest price that is closest to the current price. When the current price is bigger than -lowestBuyPrice2, maxProfit2i = price i - (price (i-1) -maxProfit1 (i-1))= price i - price (i-1) +maxProfit1 (i-1), which means the accrued maximum profit until now.

时间: 2024-10-20 12:31:00

123. Best Time to Buy and Sell Stock III ~~的相关文章

123. Best Time to Buy and Sell Stock III

/* * 123. Best Time to Buy and Sell Stock III * 2016-5-21 by Mingyang * 根据题目要求,最多进行两次买卖股票,而且手中不能有2只股票,就是不能连续两次买入操作. * 所以,两次交易必须是分布在2各区间内,也就是动作为:买入卖出,买入卖出. * 进而,我们可以划分为2个区间[0,i]和[i,len-1],i可以取0~len-1. * 那么两次买卖的最大利润为:在两个区间的最大利益和的最大利润. * 一次划分的最大利益为:Prof

LeerCode 123 Best Time to Buy and Sell Stock III之O(n)解法

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,

[LeetCode] 123. Best Time to Buy and Sell Stock III 买卖股票的最佳时间 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,

Leetcode 123. Best Time to Buy and Sell Stock III JAVA语言

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,

[leedcode 123] 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,

123. Best Time to Buy and Sell Stock III (Array; DP)

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,

leetcode 123. Best Time to Buy and Sell Stock III ----- java

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,

Java for LeetCode 123 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,

leetcode解题报告:123 Best Time to Buy and Sell Stock III

问题: 给定一个列表,第i个元素代表股票第i天的价值,只允许最多买入卖出两次,求最大收益 思路:动态规划 输入为列表p1p2...pm 代码: Python