LeetCode in Kotlin

1094. Car Pooling

Medium

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:

Solution

@Suppress("NAME_SHADOWING")
class Solution {
    fun carPooling(trips: Array<IntArray>, capacity: Int): Boolean {
        var capacity = capacity
        val stops = IntArray(1001)
        for (t in trips) {
            stops[t[1]] += t[0]
            stops[t[2]] -= t[0]
        }
        var i = 0
        while (capacity >= 0 && i < 1001) {
            capacity -= stops[i]
            ++i
        }
        return capacity >= 0
    }
}