leetcode@ [121]Best Time to Buy and Sell Stock

时间:2015-10-17 00:36:44   收藏:0   阅读:237

 

Best Time to Buy and Sell Stock

Total Accepted: 69292 Total Submissions: 206193 Difficulty: Medium

 

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.

 1 class Solution {
 2 public:
 3     int maxProfit(vector<int>& prices) {
 4         if(prices.size()<=1) return 0;
 5         
 6         int dp[prices.size()];
 7         for(int i=0;i<prices.size();++i) dp[i]=0;
 8         
 9         dp[0]=prices[0];
10         for(int i=1;i<prices.size();++i){
11             dp[i]=min(dp[i-1],prices[i]);
12         }
13         
14         int ans=-1;
15         for(int i=0;i<prices.size();++i){
16             ans=max(ans,prices[i]-dp[i]);
17         }
18         return ans;
19     }
20 };

 

原文:http://www.cnblogs.com/fu11211129/p/4886716.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!