赞
踩
给你一个二维整数数组 orders
,其中每个 orders[i] = [pricei, amounti, orderTypei]
表示有 amounti 笔类型为 orderTypei 、价格为 pricei 的订单。
订单类型 orderTypei 可以分为两种:
0 表示这是一批采购订单 buy
1 表示这是一批销售订单 sell
注意,orders[i]
表示一批共计 amounti 笔的独立订单,这些订单的价格和类型相同。对于所有有效的 i
,由 orders[i]
表示的所有订单提交时间均早于 orders[i+1]
表示的所有订单。
存在由未执行订单组成的 积压订单 。积压订单最初是空的。提交订单时,会发生以下情况:
buy
,则可以查看积压订单中价格 最低 的销售订单 sell
。如果该销售订单 sell
的价格 低于或等于 当前采购订单 buy
的价格,则匹配并执行这两笔订单,并将销售订单 sell
从积压订单中删除。否则,采购订单 buy
将会添加到积压订单中。sell
,则可以查看积压订单中价格 最高 的采购订单 buy 。如果该采购订单 buy
的价格 高于或等于 当前销售订单 sell
的价格,则匹配并执行这两笔订单,并将采购订单 buy
从积压订单中删除。否则,销售订单 sell
将会添加到积压订单中。输入所有订单后,返回积压订单中的 订单总数 。由于数字可能很大,所以需要返回对 109 + 7 取余的结果。
输入:orders = [[10,5,0],[15,2,1],[25,1,1],[30,4,0]]
输出:6
解释:输入订单后会发生下述情况:
输入:orders = [[7,1000000000,1],[15,3,0],[5,999999995,0],[5,1,1]]
输出:999999984
解释:输入订单后会发生下述情况:
1 <= orders.length <= 105
orders[i].length == 3
1 <= pricei, amounti <= 109
orderTypei 为 0 或 1
class Solution { public: int getNumberOfBacklogOrders(vector<vector<int>>& orders) { using pii = pair<int, int>; priority_queue<pii, vector<pii>, greater<pii>> sell; // 小根堆 priority_queue<pii> buy; // 大根堆 for(auto& e : orders){ int p = e[0], a = e[1], t = e[2]; if(t == 0){ // buy while(a && !sell.empty() && sell.top().first <= p){ auto [x, y] = sell.top(); sell.pop(); if(a >= y){ a -= y; } else{ sell.push({x, y - a}); a = 0; } } if(a){ buy.push({p, a}); } } else{ // sell while(a && !buy.empty() && buy.top().first >= p){ auto[x, y] = buy.top(); buy.pop(); if(a >= y){ a -= y; } else{ buy.push({x, y - a}); a = 0; } } if(a){ sell.push({p, a}); } } } long ans = 0; while(!buy.empty()){ ans += buy.top().second; buy.pop(); } while(!sell.empty()){ ans += sell.top().second; sell.pop(); } const int mod = 1e9 + 7; return ans % mod ; } };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。