-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1094.java
More file actions
59 lines (58 loc) · 1.95 KB
/
Copy path1094.java
File metadata and controls
59 lines (58 loc) · 1.95 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
// 1094. Car Pooling
//
// There is a car with capacity empty seats. The vehicle only drives east (i.e., it cannot turn around and drive west).
//
// You are given the integer capacity and an array trips where trips[i] = [numPassengersi, fromi, toi] indicates that the ith trip has numPassengersi passengers and the locations to pick them up and drop them off are fromi and toi respectively. The locations are given as the number of kilometers due east from the car's initial location.
//
// Return true if it is possible to pick up and drop off all passengers for all the given trips, or false otherwise.
//
//
//
// Example 1:
//
// Input: trips = [[2,1,5],[3,3,7]], capacity = 4
// Output: false
// Example 2:
//
// Input: trips = [[2,1,5],[3,3,7]], capacity = 5
// Output: true
//
//
// Constraints:
//
// 1 <= trips.length <= 1000
// trips[i].length == 3
// 1 <= numPassengersi <= 100
// 0 <= fromi < toi <= 1000
// 1 <= capacity <= 105
//
// Runtime 6 ms Beats 50.24% of users with Java
// Memory 43.14 MB Beats 53.01% of users with Java
class Solution {
public boolean carPooling(int[][] trips, int capacity) {
PriorityQueue<Change> pq = new PriorityQueue<>((a, b) -> a.position - b.position);
for (int[] trip: trips) {
pq.add(new Change(trip[1], trip[0]));
pq.add(new Change(trip[2], -1 * trip[0]));
}
int total = 0;
while (!pq.isEmpty()) {
Change cur = pq.remove();
while (!pq.isEmpty() && pq.peek().position == cur.position) {
Change top = pq.remove();
cur.passenger = cur.passenger + top.passenger;
}
total = total + cur.passenger;
if (total > capacity) return false;
}
return true;
}
private class Change {
int position = 0;
int passenger = 0;
Change(int position, int passenger) {
this.position = position;
this.passenger = passenger;
}
}
}