动态规划29(Leetcode714买卖股票的最佳时期含手续费)

1106

代码:

class Solution {
    public int maxProfit(int[] prices, int fee) {
        int n = prices.length;
        int[][] dp = new int[n][2];
        dp[0][0] = -prices[0];
        dp[0][1] = 0;
        for(int i=1;i

你可能感兴趣的:(动态规划,leetcode,算法)