刷题训练 day42 | 第九章 动态规划 part10

题目1:

刷题训练 day42 | 第九章 动态规划 part10_第1张图片

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

题目2:

刷题训练 day42 | 第九章 动态规划 part10_第2张图片

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

你可能感兴趣的:(算法刷题记录,动态规划,算法,数据结构,java,leetcode)