LeetCode 1094 Car Pooling (模拟)

244 篇文章 0 订阅
37 篇文章 0 订阅
该博客讨论了一道编程题,涉及如何模拟判断一辆车是否能根据给定的乘客上车和下车区间,在不超过容量限制的情况下接送所有乘客。题目中给出了车辆的初始位置和乘客分布,要求通过遍历所有区间来确定解决方案。示例展示了不同容量下可能的结果,并提供了一个简单的Java实现,该实现通过计数每个位置的上车和下车人数来判断可行性。
摘要由CSDN通过智能技术生成

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

题目链接:https://leetcode.com/problems/car-pooling/

题目大意:给定一个车的容量为capacity以及给每个区间段会上的乘客数,求能否搭载全部乘客到他们的目的地

题目分析:按照题意模拟上下车即可,若某个时刻车上人数大于capacity则不行

0ms,时间击败100%

class Solution {
    public boolean carPooling(int[][] trips, int capacity) {
        int[] cnt = new int[1005];
        int ma = 0, pcur = 0;
        for (int i = 0; i < trips.length; i++) {
            cnt[trips[i][1]] += trips[i][0];
            cnt[trips[i][2]] -= trips[i][0];
            ma = Math.max(ma, to);
        }
        for (int i = 0; i <= ma; i++) {
            pcur += cnt[i];
            if (pcur > capacity) {
                return false;
            }
        }
        return true;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值