天天看點

兩個相關聯的數組利用pair進行排序

502. IPO

Hard

18618FavoriteShare

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 Wcapital. 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:

class Solution {
public:
    static bool Cmp(const pair<int,int>& a,const pair<int,int>& b){
        return a.first < b.first;
    }
    int findMaximizedCapital(int k, int W, vector<int>& Profits, vector<int>& Capital) {
        vector<pair<int,int>> Cap_Index;
        for(int i = 0;i < Capital.size();i ++){
            Cap_Index.push_back(make_pair(Capital[i],i));
        }
        stable_sort(Cap_Index.begin(),Cap_Index.end(),Cmp);
        priority_queue<int> Pri_Profit;//建構一個大頂堆
        while(k--){
            for(int index = 0;index < Capital.size() && Cap_Index[index].first <= W;index++){
                int tmp = Profits[Cap_Index[index].second];
                Pri_Profit.push(tmp);
            }
            if(Pri_Profit.size() == 0){
                return W;
            }
            int Best_Profit = Pri_Profit.top();
            Pri_Profit.pop();
            W += Best_Profit;
        }
        return W;
    }
};