Package g1001_1100.s1094_car_pooling
Class Solution
- java.lang.Object
-
- g1001_1100.s1094_car_pooling.Solution
-
public class Solution extends Object
1094 - Car Pooling.Medium
There is a car with
capacityempty seats. The vehicle only drives east (i.e., it cannot turn around and drive west).You are given the integer
capacityand an arraytripswheretrips[i] = [numPassengersi, fromi, toi]indicates that theithtrip hasnumPassengersipassengers and the locations to pick them up and drop them off arefromiandtoirespectively. The locations are given as the number of kilometers due east from the car’s initial location.Return
trueif it is possible to pick up and drop off all passengers for all the given trips, orfalseotherwise.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 <= 1000trips[i].length == 31 <= numPassengersi <= 1000 <= fromi < toi <= 10001 <= capacity <= 105
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancarPooling(int[][] trips, int capacity)
-