-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIpo.java
47 lines (39 loc) · 956 Bytes
/
Ipo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.util.Arrays;
import java.util.Collections;
import java.util.PriorityQueue;
class Pair implements Comparable<Pair> {
int capital;
int profit;
public Pair(int capital, int profit) {
this.capital = capital;
this.profit = profit;
}
@Override
public int compareTo(Pair other) {
return this.capital - other.capital;
}
}
class Solution {
public int findMaximizedCapital(int k, int w, int[] profits, int[] capital) {
int n = profits.length;
Pair[] pairs = new Pair[n];
for (int i = 0; i < n; i++) {
pairs[i] = new Pair(capital[i], profits[i]);
}
Arrays.sort(pairs);
PriorityQueue<Integer> pq = new PriorityQueue<>(Collections.reverseOrder());
int i = 0;
while (k > 0) {
while (i < n && pairs[i].capital <= w) {
pq.add(pairs[i].profit);
i++;
}
if (pq.isEmpty()) {
break;
}
w += pq.poll();
k--;
}
return w;
}
}