【每日一题Day75】LC1801积压订单中的订单总数 | 优先队列

简介: 思路:使用两个优先队列存储类型为buy或者sell的积压订单,根据规则删除积压订单,并统计积压订单的数量,最后返回结果即可

积压订单中的订单总数【LC1801】


You are given a 2D integer array orders, where each orders[i] = [pricei, amounti, orderTypei] denotes that amounti orders have been placed of type orderTypei at the price pricei. The orderTypei is:


  • 0 if it is a batch of buy orders, or
  • 1 if it is a batch of sell orders.


Note that orders[i] represents a batch of amounti independent orders with the same price and order type. All orders represented by orders[i] will be placed before all orders represented by orders[i+1] for all valid i.


There is a backlog that consists of orders that have not been executed. The backlog is initially empty. When an order is placed, the following happens:


  • If the order is a buy order, you look at the sell order with the smallest price in the backlog. If that sell order’s price is smaller than or equal to the current buy order’s price, they will match and be executed, and that sell order will be removed from the backlog. Else, the buy order is added to the backlog.


  • Vice versa, if the order is a sell order, you look at the buy order with the largest price in the backlog. If that buy order’s price is larger than or equal to the current sell order’s price, they will match and be executed, and that buy order will be removed from the backlog. Else, the sell order is added to the backlog.


Return the total amount of orders in the backlog after placing all the orders from the input. Since this number can be large, return it modulo 109 + 7.


  • 思路:使用两个优先队列存储类型为buy或者sell的积压订单,根据规则删除积压订单,并统计积压订单的数量,最后返回结果即可


。当遍历到的订单是采购订单时,从优先队列sell中删除能够删除的所有积压订单,销售价格需小于等于采购价格,并且需要优先删除销售价格较小的订单,因此优先队列sell以price升序排序


。当遍历到的订单是销售订单时,从优先队列buy中删除能够删除的所有积压订单,采购价格需大于等于销售价格,并且需要优先删除采购价格更大的订单,因此优先队列buy以price降序排序


  • 实现


。使用int类型变量count统计积压订单的数量,遇到新订单时先将新订单数量累加至count,每次提交订单时删除相应的数量,注意减法为了避免负数取余时需要加MOD


class Solution {
    public int getNumberOfBacklogOrders(int[][] orders) {
        int MOD = (int)(1e9 + 7);
        PriorityQueue<int[]> buy = new PriorityQueue<int[]>((o1, o2) -> (o2[0] - o1[0]));
        PriorityQueue<int[]> sell = new PriorityQueue<int[]>((o1, o2) -> (o1[0] - o2[0]));        
        long count = 0;// 统计积压订单数量
        for (int[] order : orders){
            int price = order[0], amount = order[1], type = order[2];
            count = (count + amount) % MOD;
            if (type == 0){// buy                
                while(!sell.isEmpty() && sell.peek()[0] <= price){
                    int[] minSell = sell.poll();
                    int num = Math.min(amount, minSell[1]);
                    minSell[1] -= num;
                    amount -= num;
                    // count = (count - 2 * num) % MOD;
                    count = (count + MOD- 2 * num) % MOD;// 避免遇到负数
                    if (amount == 0 && minSell[1] != 0){
                        sell.add(new int[]{minSell[0], minSell[1]});
                        break;
                    }
                }
                if (amount != 0){
                    buy.add(new int[]{price, amount});
                }
            }else{// sell
                while(!buy.isEmpty() && buy.peek()[0] >= price){
                    int[] maxBuy = buy.poll();
                    int num = Math.min(amount, maxBuy[1]);
                    maxBuy[1] -= num;
                    amount -= num;
                    // count = (count - 2 * num) % MOD;
                    count = (count + MOD- 2 * num) % MOD;
                    if (amount == 0 && maxBuy[1] != 0){
                        buy.add(new int[]{maxBuy[0], maxBuy[1]});
                        break;
                    }
                }
                if (amount != 0){
                    sell.add(new int[]{price, amount});
                }
            }
        }
        return (int)count;
    }
}


。复杂度


  • 时间复杂度:O(nlogn),需要遍历数组 orders 一次,对于每个元素处理优先队列的时间是O(logn),共需要 O(nlog⁡n)的时间,遍历结束之后计算剩余的积压订单总数需要O(nlog⁡n) 的时间。
  • 空间复杂度:O ( n )
目录
相关文章
|
1月前
|
算法 测试技术 C#
【最大值线段树】【二分查找】2286. 以组为单位订音乐会的门票
【最大值线段树】【二分查找】2286. 以组为单位订音乐会的门票
|
1月前
|
算法
每日一题:LeetCode-LCR 179. 查找总价格为目标值的两个商品
每日一题:LeetCode-LCR 179. 查找总价格为目标值的两个商品
|
2月前
|
存储
leetcode1944. 队列中可以看到的人数
leetcode1944. 队列中可以看到的人数
16 0
|
4月前
|
存储 搜索推荐 算法
14.如何把百万级别订单根据金额排序
14.如何把百万级别订单根据金额排序
10 0
|
4月前
|
存储 搜索推荐 算法
如何把百万级别的订单根据金额排序
如何把百万级别的订单根据金额排序
18 0
|
5月前
|
存储
【每日一题Day193】LC1376通知所有员工所需的时间 | dfs
【每日一题Day193】LC1376通知所有员工所需的时间 | dfs
29 0
|
10月前
|
前端开发
检索业务:排序和价格区间及库存
检索业务:排序和价格区间及库存
淘宝批量复制宝贝提示“当前类目大于48小时发货的发货时间不能大于15天,请调整”怎么解决?
要复制这个宝贝上传到淘宝店铺,只需要重新复制一次,然后在大淘营淘宝宝贝复制专家下载配置的第二步,选择一个小于或等于15天的发货时间(见下图),这样就可以复制宝贝上传到淘宝店铺了。
|
算法
红包随机算法,给定一定的金额,一定的人数,保证每个人都能随机获得一定的金额。...
红包随机算法,给定一定的金额,一定的人数,保证每个人都能随机获得一定的金额。...
132 0
|
安全
【每日一题Day111】LC1604警告一小时内使用相同员工卡大于等于三次的人 | 哈希表+排序
使用哈希表统计每位员工使用工卡的所有时间节点,将时间转化为分钟的形式,方便后续统计一小时内使用次数大于等于3的员工
63 0