鱼C论坛

 找回密码
 立即注册
查看: 2302|回复: 0

[学习笔记] Leetcode 1094. Car Pooling

[复制链接]
发表于 2020-9-23 03:17:34 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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
class Solution:
    def carPooling(self, trips: List[List[int]], capacity: int) -> bool:
        if trips == None or len(trips) == 0 or len(trips[0]) == 0:
            return True
        trips.sort(key = lambda x: x[1])
        heap = []
        for trip in trips:
            heapq.heappush(heap, [trip[1], trip[2], trip[0]])
        # print(heap)
        while heap:
            curt = heapq.heappop(heap)
            curt_passenger = curt[2]
            curt_start = curt[0]
            curt_end = curt[1]
            
            next = None
            
            if heap and heap[0][0] < curt_end:
                next = heapq.heappop(heap)
                next_passenger = next[2]
                next_start = next[0]
                next_end = next[1]
                if next_end > curt_end:
                    heapq.heappush(heap, [curt_start, next_start, curt_passenger])
                    heapq.heappush(heap, [next_start, curt_end, curt_passenger + next_passenger])
                    heapq.heappush(heap, [curt_end, next_end, next_passenger])
                else:
                    heapq.heappush(heap, [curt_start, next_start, curt_passenger])
                    heapq.heappush(heap, [next_start, next_end, curt_passenger + next_passenger])
                    heapq.heappush(heap, [next_end, curt_end, curt_passenger])
                    
                    
            if next == None:
                if curt_passenger > capacity:
                    return False
        return True
        

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-7-2 21:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表