best-time-to-buy-and-sell-stock-i
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.
public class maxProfit { public int maxProfit(int[] prices) { if (prices == null || prices.length == 0 ) return 0; int min = prices[0]; int maxprofit = 0; for (int i=0;i<prices.length;i++) { if (prices[i] < min) { min = prices[i]; } if (prices[i] - min >maxprofit) { maxprofit = prices[i] - min; } } return maxprofit; } }
best-time-to-buy-and-sell-stock-ii
Say you have an array for which the i th 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). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。
注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
示例 1:
输入: [7,1,5,3,6,4] 输出: 7 解释: 在第 2 天(股票价格 = 1)的时候买入,在第 3 天(股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。 随后,在第 4 天(股票价格 = 3)的时候买入,在第 5 天(股票价格 = 6)的时候卖出, 这笔交易所能获得利润 = 6-3 = 3 。
判断相邻是否递增,因为连续递增可以合起来看为一次买入卖出操作,所以统计所有递增量即可
public class bestTimeToBuyAndSellStockii { public int maxProfit(int[] prices) { if (prices == null || prices.length == 0 ) return 0; int profit = 0; for (int i=0;i<prices.length-1;i++) { if (prices[i] < prices[i+1]) { profit += prices[i+1] - prices[i]; } } return profit; } }
best-time-to-buy-and-sell-stock-iii(hard)
(第一次没做出来)
给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你最多可以完成 两笔 交易。
注意: 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
Say you have an array for which the i th 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).
class Solution { public: int maxProfit(vector<int>& prices) { int buy1 = INT_MIN, sell1 = 0, buy2 = INT_MIN, sell2 = 0; for(int i = 0; i < prices.size(); i++) { buy1 = max(buy1, -prices[i]); sell1 = max(sell1, buy1 + prices[i]); buy2 = max(buy2, sell1 - prices[i]); sell2 = max(sell2, buy2 + prices[i]); } return sell2; } };
best-time-to-buy-and-sell-stock-IV(hard)
(第一次没做出来)
给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你最多可以完成 k 笔交易。
注意: 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
class Solution { public int maxProfit(int k, int[] prices) { /** 当k大于等于数组长度一半时, 问题退化为贪心问题此时采用 买卖股票的最佳时机 II 的贪心方法解决可以大幅提升时间性能, 对于其他的k, 可以采用 买卖股票的最佳时机 III 的方法来解决, 在III中定义了两次买入和卖出时最大收益的变量, 在这里就是k租这样的 变量, 即问题IV是对问题III的推广, t[i][0]和t[i][1]分别表示第i比交易买入和卖出时 各自的最大收益 **/ if(k < 1) return 0; if(k >= prices.length/2) return greedy(prices); int[][] t = new int[k][2]; for(int i = 0; i < k; ++i) t[i][0] = Integer.MIN_VALUE; for(int p : prices) { t[0][0] = Math.max(t[0][0], -p); t[0][1] = Math.max(t[0][1], t[0][0] + p); for(int i = 1; i < k; ++i) { t[i][0] = Math.max(t[i][0], t[i-1][1] - p); t[i][1] = Math.max(t[i][1], t[i][0] + p); } } return t[k-1][1]; } private int greedy(int[] prices) { int max = 0; for(int i = 1; i < prices.length; ++i) { if(prices[i] > prices[i-1]) max += prices[i] - prices[i-1]; } return max; } }