Leetcode:Best Time to Buy and Sell Stock ⅠⅡⅢ

Best Time to Buy and Sell Stock

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 Solution {
    public int maxProfit(int[] prices) {

        if(prices.length<2)
        return 0;
        //最大利润
        int maxprofit=0;
        //最低价格,初始为第一天的价格
        int minprice=prices[0];
        for(int i=1;i<prices.length;i++){
            //比较得到当前的最低价格
            minprice=Math.min(minprice,prices[i]);
            //计算利润,求出当前的最大利润
            maxprofit=Math.max(maxprofit,prices[i]-minprice);
        }

        return maxprofit;
    }
}

Best Time to Buy and Sell Stock II

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 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).

因为可以随意买卖次数,只要有利润就买卖即可

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

        int maxProfit = 0;
        for (int i = 1; i < prices.length; i++) {
            int diff = prices[i] - prices[i - 1];
            if (diff > 0) {
                maxProfit += diff;
            }
        }

        return maxProfit;
    }
}

Best Time to Buy and Sell Stock III

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.

开始想不出有什么好的办法,后来看到了别人的解法,茅塞顿开

因为2次交易,所以我们可以找出第i天前交易一次的最大利润,和第i天后的交易的最大利润!

于是就是正着寻找一遍找出了第i天前交易的最大利润
反着来再来一遍找到第i天后的交易的最大利润

public class Solution {
    public int maxProfit(int[] prices) {
        if (prices.length < 2) 
            return 0;
        int maxProfit=0;
        int n = prices.length;
        int[] preProfit = new int[n];
        int[] postProfit = new int[n];
        int curMin = prices[0];
        int curMax = prices[n - 1];


        for(int i = 1; i < prices.length; i++) {
            //找到了第i天前的最大利润
            curMin=Math.min(curMin,prices[i]);
            preProfit[i]=Math.max(preProfit[i-1],prices[i]-curMin);
            //第i天后的最大利润
            curMax=Math.max(curMax,prices[n-i-1]);
            postProfit[n-1-i]=Math.max(postProfit[n-i],curMax-prices[n-1-i]);
        }

        for(int i=0;i<prices.length;i++){
        //求和,求出最大值
                                 maxProfit=Math.max(maxProfit,preProfit[i]+postProfit[i]);
        }

        return maxProfit;

    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。
1. 智慧监狱概述 智慧监狱的建设背景基于监狱信息化的发展历程,从最初的数字化监狱到信息化监狱,最终发展到智慧监狱。智慧监狱强调管理的精细化、监管的一体化、改造的科学化以及办公的无纸化。政策上,自2017年以来,司法部连续发布了多项指导性文件,推动智慧监狱的建设。 2. 内在需求与挑战 智慧监狱的内在需求包括数据应用与共享的不足、安防系统的单一功能、IT架构的复杂性、信息安全建设的薄弱以及IT运维的人工依赖。这些挑战要求监狱系统进行改革,以实现数据的深度利用和业务的智能化。 3. 技术架构与设计 智慧监狱的技术架构包括统一门户、信息安全、综合运维、安防集成平台和大数据平台。设计上,智慧监狱采用云计算、物联网、大数据和人工智能等技术,实现资源的动态分配、业务的快速部署和安全的主动防护。 4. 数据治理与应用 监狱数据应用现状面临数据分散和共享不足的问题。智慧监狱通过构建数据共享交换体系、数据治理工具及服务,以及基于数据仓库的数据分析模型,提升了数据的利用效率和决策支持能力。 5. 安全与运维 智慧监狱的信息安全建设涵盖了大数据应用、安全管理区、业务区等多个层面,确保了数据的安全和系统的稳定运行。同时,综合运维平台的建立,实现了IT系统的统一管理和自动化运维,提高了运维效率和系统的可靠性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值