【leetcode】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.
题解:简单的动态规划题。用prices存储每天的股票价格,dp[i]表示第i天的最大利润,minmum表示遍历到当前为止prices中最小的元素。
那么在第i+1天有两种选择:
1.在这一天卖掉股票,那么显然可以获得的最大利润是prices[i+1]-minmum;
2.在这一天之前就把股票卖掉,那么可以获得的最大利润即使前i天可以获得最大利润。
dp[i] = max({dp[0],dp[1],...,dp[i]},prices[i+1]-minmum)
其实上述的dp数组也不需要,只要一个profit变量记录到当前为止可以获得最大的利润就可以了。
代码如下:
#include <iostream> #include <vector> using namespace std; class Solution { public: int maxProfit(vector<int> &prices) { if(prices.size() == 0) return 0; int Profit = 0; int minmum_price = prices[0]; for(int i= 1;i < prices.size();i++){ if(prices[i] < minmum_price) minmum_price = prices[i]; if(prices[i]-minmum_price > Profit) Profit = prices[i]-minmum_price; } return Profit; } }; int main(){ vector <int> prices; prices.push_back(3); prices.push_back(3); prices.push_back(5); prices.push_back(0); prices.push_back(0); prices.push_back(3); prices.push_back(1); prices.push_back(4); Solution s; cout <<s.maxProfit(prices)<<endl; }
JAVA版本代码:设置一个最小值记录当前为止最低的价格,一个answer变量记录当前为止可以获得最大收益,那么在每一步answer = max(answer,prices[i]-nowMin),最后的answer就是最大的收益。
1 public class Solution { 2 public int maxProfit(int[] prices) { 3 int nowMin = Integer.MAX_VALUE; 4 int answer = 0; 5 for(int i = 0;i < prices.length;i++){ 6 nowMin = nowMin < prices[i]?nowMin:prices[i]; 7 answer = answer > prices[i]-nowMin?answer:prices[i]-nowMin; 8 } 9 return answer; 10 } 11 }
分类:
leetcode刷题总结
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了