码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode || 121、Best Time to Buy and Sell Stock

时间:2015-04-27 11:25:03      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:leetcode   dp   动态规划   

problem:

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.

Hide Tags
 Array Dynamic Programming
题意:给定一支股票的价格表,决定哪天买哪天卖受益最大,卖的时间在买的后面

thinking:

(1)其实就是求一个数组元素两个元素之间的最大差值,使用后面的数减去前面的数

(2)典型的 DP思路,开一个N大小的数组,记录该位置的减去前面最小元素的差值,

最后找出差值数组的最大值即可,时间复杂度O(N)

code:

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int n=prices.size();
        if(n==0)
            return 0;
        vector<int> f(n,0);
        int minprice=prices[0];
        for(int i=0;i<n;i++)
        {
            minprice=min(minprice,prices[i]);
            f[i]=prices[i]-minprice;
        }
        int profit=f[0];
        for(int j=0;j<n;j++)
            profit=max(profit,f[j]);
        return profit;
    }
};


leetcode || 121、Best Time to Buy and Sell Stock

标签:leetcode   dp   动态规划   

原文地址:http://blog.csdn.net/hustyangju/article/details/45306207

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!