Skip to content

Latest commit

 

History

History

1094

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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

Companies:
Amazon, Google, Flipkart, Facebook, Microsoft, Bloomberg, DoorDash

Related Topics:
Array, Sorting, Heap (Priority Queue), Simulation, Prefix Sum

Similar Questions:

Solution 1. Difference Array

// OJ: https://leetcode.com/problems/car-pooling/
// Author: github.com/lzl124631x
// Time: O(TlogP + P) where T is the size of `trips` and P is the count of distinct stops
// Space: O(P)
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        map<int, int> m;
        for (auto &t : trips) {
            m[t[1]] += t[0];
            m[t[2]] -= t[0];
        }
        int cnt = 0;
        for (auto &[p, n] : m) {
            cnt += n;
            if (cnt > capacity) return false;
        }
        return true;
    }
};

Or

// OJ: https://leetcode.com/problems/car-pooling/
// Author: github.com/lzl124631x
// Time: O(T + P)
// Space: O(P)
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        int diff[1001] = {};
        for (auto &v : trips) {
            diff[v[1]] += v[0];
            diff[v[2]] -= v[0];
        }
        int cnt = 0;
        for (int d : diff) {
            if ((cnt += d) > capacity) return false;
        }
        return true;
    }
};