Passengers Pick-up and Drop-off Algorithms (Car Pooling) via Gre

  • 时间:2020-09-21 09:15:21
  • 分类:网络文摘
  • 阅读:101 次

You are driving a vehicle that has capacity empty seats initially available for passengers. The vehicle only drives east (ie. it cannot turn around and drive west.)

Given a list of trips, trip[i] = [num_passengers, start_location, end_location] contains information about the i-th trip: the number of passengers that must be picked up, and the locations to pick them up and drop them off.

The locations are given as the number of kilometers due east from your vehicle’s initial location.

Return true if and only if it is possible to pick up and drop off all passengers for all the given trips.

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

Example 3:
Input: trips = [[2,1,5],[3,5,7]], capacity = 3
Output: true

Example 4:
Input: trips = [[3,2,7],[3,7,9],[8,3,9]], capacity = 11
Output: true

Constraints:

  • trips.length <= 1000
  • trips[i].length == 3
  • 1 <= trips[i][0] <= 100
  • 0 <= trips[i][1] < trips[i][2] <= 1000
  • 1 <= capacity <= 100000

Hint:
Sort the pickup and dropoff events by location, then process them in order.

Greedy Algorithm for Car Pooling

The C++ std::map sorts the keys by default. And when pickuping the passengers, we increment the counter for that pooling station, and when dropping the passengers, we decrement the counter similarly. And we process the pooling stations in order to update the global counter which represents the current number of passengers. If at anytime, it exceeds the capacity, we simply return false.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        map<int, int> data;
        for (const auto &n: trips) {
            int start = n[1];
            int end = n[2];
            int num = n[0];
            data[start] += num;
            data[end] -= num;
        }
        int s = 0;
        for (auto it = data.begin(); it != data.end(); ++ it) {
            s += it->second;
            if (s > capacity) return false;
        }
        return true;
    }
};
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        map<int, int> data;
        for (const auto &n: trips) {
            int start = n[1];
            int end = n[2];
            int num = n[0];
            data[start] += num;
            data[end] -= num;
        }
        int s = 0;
        for (auto it = data.begin(); it != data.end(); ++ it) {
            s += it->second;
            if (s > capacity) return false;
        }
        return true;
    }
};

(As the keys are sorted) – the map indicates a O(nlogN) complexity where N is the size of the trips. And the space complexity is O(N).

As the inputs are strictly bounded to limited range, we can use a static array to store the counters for the pooling stations. Then going through them in order requires O(1) constant. The C++ greedy algorithm takes O(1) constant space and O(N) time where N is the size of the trips.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        int travel[1001] = { 0 };
        for (const auto n: trips) {
            travel[n[1]] += n[0];
            travel[n[2]] -= n[0];
        }
        int cur = 0;
        for (int i = 0; i < 1001; ++ i) {
            cur += travel[i];
            if (cur > capacity) {
                return false;
            }
        }
        return true;
    }
};
class Solution {
public:
    bool carPooling(vector<vector<int>>& trips, int capacity) {
        int travel[1001] = { 0 };
        for (const auto n: trips) {
            travel[n[1]] += n[0];
            travel[n[2]] -= n[0];
        }
        int cur = 0;
        for (int i = 0; i < 1001; ++ i) {
            cur += travel[i];
            if (cur > capacity) {
                return false;
            }
        }
        return true;
    }
};

–EOF (The Ultimate Computing & Technology Blog) —

推荐阅读:
分享茄子的家常做法,吃起来不油腻,营养美味又下饭  中华人民共和国慈善法(主席令第四十三号)  中华人民共和国深海海底区域资源勘探开发法(主席令第四十二号)  全国人民代表大会常务委员会关于修改《中华人民共和国人口与计划生育法》的决定(主席令第四十一号)  全国人大常委会关于修改《中华人民共和国高等教育法》的决定(主席令第四十号)  中华人民共和国反家庭暴力法(主席令第三十七号)  全国人大常委会关于修改《中华人民共和国教育法》的决定(主席令第三十九号)  中华人民共和国国家勋章和国家荣誉称号法(主席令第三十八号)  中华人民共和国反恐怖主义法(主席令第三十六号)  地图管理条例(国务院令第664号)  
评论列表
添加评论