IPO

来源:互联网 发布:php curl 的使用 编辑:程序博客网 时间:2024/04/29 12:49

IPO

Suppose LeetCode will start its IPO soon. In order to sell a good price of its shares to Venture Capital, LeetCode would like to work on some projects to increase its capital before the IPO. Since it has limited resources, it can only finish at most k distinct projects before the IPO. Help LeetCode design the best way to maximize its total capital after finishing at most k distinct projects.

You are given several projects. For each project i, it has a pure profit Pi and a minimum capital of Ci is needed to start the corresponding project. Initially, you have W capital. When you finish a project, you will obtain its pure profit and the profit will be added to your total capital.

To sum up, pick a list of at most k distinct projects from given projects to maximize your final capital, and output your final maximized capital.

Example 1:

Input: k=2, W=0, Profits=[1,2,3], Capital=[0,1,1].Output: 4Explanation: Since your initial capital is 0, you can only start the project indexed 0.             After finishing it you will obtain profit 1 and your capital becomes 1.             With capital 1, you can either start the project indexed 1 or the project indexed 2.             Since you can choose at most 2 projects, you need to finish the project indexed 2 to get the maximum capital.             Therefore, output the final maximized capital, which is 0 + 1 + 3 = 4.

Note:

  1. You may assume all numbers in the input are non-negative integers.
  2. The length of Profits array and Capital array will not exceed 50,000.
  3. The answer is guaranteed to fit in a 32-bit signed integer.
解析:

自己写的超时,看大神的最大堆,最小堆的解法很经典

代码:

class Solution {public:       int findMaximizedCapital(int k, int W, vector<int>& Profits, vector<int>& Capital) {        priority_queue<pair<int, int>> maxH;        priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> minH;        for (int i=0; i<Profits.size(); i++)        {            minH.push(make_pair(Capital[i],Profits[i]));        }        int ans=W;        for (int i=0; i<k; i++)        {            while(!minH.empty()&&minH.top().first<=ans)            {                maxH.push(make_pair(minH.top().second,minH.top().first));                minH.pop();            }            if (maxH.empty())            break;            ans+=maxH.top().first;            maxH.pop();                    }                return ans;    }};


0 0