LeetCode Best Time to Buy and Sell Stock III

Description:

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.

Solution:

这道题目的变化是,至多可以买卖两次。

可以利用和1一样的想法,只不过1只需要从后往前遍历一次,或者从前往后遍历一次,这里就直接结合。考虑的想法是,既然买卖两次,可以以某个点为断点,前部分找一次最大,后部分找一次最大;然后遍历所有的点,将每个点前后两次最大利润加起来,取这个利润和的最大值。

import java.util.*;

public class Solution {
	public int maxProfit(int[] prices) {
		int n = prices.length;
		if (n == 0)
			return 0;

		int after[] = new int[n];
		int before[] = new int[n];

		int maxPrice = prices[n - 1], max = 0;
		for (int i = n - 1; i >= 0; i--) {
			maxPrice = Math.max(maxPrice, prices[i]);
			max = Math.max(max, maxPrice - prices[i]);
			after[i] = max;
		}

		int minPrice = prices[0];
		max = 0;
		for (int i = 0; i < n; i++) {
			minPrice = Math.min(minPrice, prices[i]);
			max = Math.max(max, prices[i] - minPrice);
			before[i] = max;
		}

		max = 0;
		for (int i = 0; i < n; i++)
			max = Math.max(max, after[i] + before[i]);
		return max;
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值