赞
踩
给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。
注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
链接: leetcode.
解题思路:一次遍历,手里先握着一个价格,如果当前价格比自己高,那就卖出,添加利润,然后再买入。如果当前价格比自己低,那就直接买入。
// created by lippon class Solution { public int maxProfit(int[] prices) { int res = 0; int n = prices.length; if(n == 0) return res; int cur = prices[0]; for(int i = 1; i < n; i++) { if(prices[i] > cur) { res += prices[i] - cur; cur = prices[i]; } else { cur = prices[i]; } } return res; } }
给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你最多可以完成 两笔 交易。
注意: 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
链接: leetcode.
解题思路:可以将问题分解为,如果找到一个中间点,使得中间点左右两段中一次买卖的利润和最大。这样,就需要两个遍历,一个顺序一个逆序,动态规划,找到以每个元素结尾的最大利润。
class Solution { public int maxProfit(int[] prices) { int n = prices.length; if(n == 0) return 0; int[] f1 = new int[n], f2 = new int[n]; int min = prices[0], max = prices[n - 1]; for(int i = 1; i < n; i ++) { f1[i] = Math.max(f1[i - 1], prices[i] - min); min = Math.min(min, prices[i]); } for(int i = n - 2; i >= 0; i --) { f2[i] = Math.max(f2[i + 1], max - prices[i]); max = Math.max(max, prices[i]); } int res = 0; for(int i = 0; i < n; i++) { res = Math.max(res, f1[i] + f2[i]); } return res; } }
给定一个整数数组 prices,其中第 i 个元素代表了第 i 天的股票价格 ;非负整数 fee 代表了交易股票的手续费用。
你可以无限次地完成交易,但是你每笔交易都需要付手续费。如果你已经购买了一个股票,在卖出它之前你就不能再继续购买股票了。
返回获得利润的最大值。
注意:这里的一笔交易指买入持有并卖出股票的整个过程,每笔交易你只需要为支付一次手续费。
添加链接描述
解题思路:利用动态规划的思想。
class Solution { public int maxProfit(int[] prices, int fee) { int n = prices.length; if(n == 0) return 0; int cur = prices[0]; int res = 0; // 状态数组 int[][] f = new int[n][2]; // 第一天买入 f[0][0] = - prices[0]; for(int i = 1; i < n; i++) { // 持有状态 f[i][0] = Math.max(f[i - 1][0], f[i - 1][1] - prices[i]); // 不持有状态 f[i][1] = Math.max(f[i - 1][1], f[i - 1][0] + prices[i] - fee); } return Math.max(f[n - 1][0], f[n - 1][1]); } }
给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。
设计一个算法计算出最大利润。在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票):
你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
卖出股票后,你无法在第二天买入股票 (即冷冻期为 1 天)。
解题思路:可以参考上一题的思路利用动态规划的思想。
class Solution { public int maxProfit(int[] prices) { int res = 0; int n = prices.length; int[][] f = new int[n][3]; if(n == 0) return 0; f[0][1] = -prices[0]; f[0][0] = 0; for(int i = 1; i < n; i++) { // 第i天不持有股票,则前一天可能卖出了股票,也可能不持有股票 f[i][0] = Math.max(f[i - 1][2], f[i - 1][0]); // 当天持有股票,则前一天可能持有股票,也可能当天买入了股票 f[i][1] = Math.max(f[i - 1][1], f[i - 1][0] - prices[i]); // 当天卖出了股票,则前一天一定持有股票 f[i][2] = f[i - 1][1] + prices[i]; } return Math.max(f[n - 1][0], Math.max(f[n - 1][1], f[n - 1][2])); } }
给定一个整数数组 prices ,它的第 i 个元素 prices[i] 是一支给定的股票在第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你最多可以完成 k 笔交易。
注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
leetocde
解题思路:常规的动态规划
class Solution { public int maxProfit(int k, int[] prices) { int n = prices.length; if(n == 0) return 0; // 如果k超过了最大可买卖次数,那就将k置为最大买卖次数 // 最大买卖次数就是天数的一半,如果当前卖出又买入,是没有意义的 k = Math.min(k, n / 2); // 状态标识数组,三个维度分别代表:第几天,手上是否有股票0没有1有,还有多少次买卖机会 // 数组值表示当前还有多少钱 int[][][] f = new int[n][2][k + 1]; // 设置初始值,第一天手上有股票的状态,就是买入第一天价格的值 for(int i = 0; i <= k; i++) { f[0][1][i] = -prices[0]; } // 状态转移,遍历天数 for(int i = 1; i < n; i++) { // 枚举所有可能买卖次数的状态 for(int j = 0; j <= k; j++) { // 当前不持有股票的状态转移 if(j < k) { // 当前不持有股票,要么前一天也没有股票,要么前一天有股票,今天卖出了 f[i][0][j] = Math.max(f[i - 1][0][j], f[i - 1][1][j + 1] + prices[i]); } else { // j等于k的时候,那么说明当天没有产生交易 f[i][0][j] = f[i - 1][0][j]; } // 当前持有股票的状态转移,要么前一天也有股票,要么当天买入了股票 f[i][1][j] = Math.max(f[i - 1][1][j], f[i - 1][0][j] - prices[i]); } } int res = 0; // 获取最大值 for(int i = 0; i <= k; i ++) { res = Math.max(res, f[n - 1][0][i]); } return res; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。