forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
47 lines (47 loc) · 1.56 KB
/
Solution.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
class Solution {
public int getNumberOfBacklogOrders(int[][] orders) {
PriorityQueue<int[]> buy = new PriorityQueue<>((a, b) -> b[0] - a[0]);
PriorityQueue<int[]> sell = new PriorityQueue<>((a, b) -> a[0] - b[0]);
for (var e : orders) {
int p = e[0], a = e[1], t = e[2];
if (t == 0) {
while (a > 0 && !sell.isEmpty() && sell.peek()[0] <= p) {
var q = sell.poll();
int x = q[0], y = q[1];
if (a >= y) {
a -= y;
} else {
sell.offer(new int[] {x, y - a});
a = 0;
}
}
if (a > 0) {
buy.offer(new int[] {p, a});
}
} else {
while (a > 0 && !buy.isEmpty() && buy.peek()[0] >= p) {
var q = buy.poll();
int x = q[0], y = q[1];
if (a >= y) {
a -= y;
} else {
buy.offer(new int[] {x, y - a});
a = 0;
}
}
if (a > 0) {
sell.offer(new int[] {p, a});
}
}
}
long ans = 0;
final int mod = (int) 1e9 + 7;
while (!buy.isEmpty()) {
ans += buy.poll()[1];
}
while (!sell.isEmpty()) {
ans += sell.poll()[1];
}
return (int) (ans % mod);
}
}