[LeetCode] IPO

502. 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 n projects where the ith project has a pure profit profits[i] and a minimum capital of capital[i] is needed to start it.

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.

Pick a list of at most k distinct projects from given projects to maximize your final capital, and return the final maximized capital.

The answer is guaranteed to fit in a 32-bit signed integer.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public:
int findMaximizedCapital(int k, int res, vector<int>& p, vector<int>& c) {
int n = p.size();
priority_queue<int> pq;
vector<pair<int,int>> v;
for(int i = 0; i < n; i++) {
v.push_back({c[i], p[i]});
}
int i = 0;
sort(begin(v), end(v));
while(k--) {
while(i < n and v[i].first <= res) {
pq.push(v[i++].second);
}
if(!pq.empty()) {
res += pq.top(); pq.pop();
}
}

return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/04/26/PS/LeetCode/ipo/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.