当前位置:网站首页>外卖店优先级
外卖店优先级
2022-08-04 03:08:00 【Ding Jiaxiong】
题目
“饱了么”外卖系统中维护着 N 家外卖店,编号 1∼N。
每家外卖店都有一个优先级,初始时 (0 时刻) 优先级都为 0。
每经过 1 个时间单位,如果外卖店没有订单,则优先级会减少 1,最低减到 0;而如果外卖店有订单,则优先级不减反加,每有一单优先级加 2。
如果某家外卖店某时刻优先级大于 5,则会被系统加入优先缓存中;如果优先级小于等于 3,则会被清除出优先缓存。
给定 T 时刻以内的 M 条订单信息,请你计算 T 时刻时有多少外卖店在优先缓存中。
输入格式
第一行包含 3 个整数 N,M,T。
以下 M 行每行包含两个整数 ts 和 id,表示 ts 时刻编号 id 的外卖店收到一个订单。
输出格式
输出一个整数代表答案。
数据范围
1≤N,M,T≤105,
1≤ts≤T,
1≤id≤N
输入样例:
2 6 6
1 1
5 2
3 1
6 2
2 1
6 2
输出样例:
1
样例解释
6 时刻时,1 号店优先级降到 3,被移除出优先缓存;2 号店优先级升到 6,加入优先缓存。
所以是有 1 家店 (2 号) 在优先缓存中。
思路分析




题解
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define x first
#define y second
using namespace std;
typedef pair<int , int > PII;
const int N = 100010;
int n , m , T;
int last[N],score[N];
bool st[N];
PII order[N]; //所有订单
int main(){
scanf("%d%d%d",&n , &m , &T);
for(int i = 0 ; i < m; i++){
scanf("%d%d",&order[i].x , &order[i].y);
}
sort(order , order + m);
//枚举每个订单
for(int i = 0; i < m ;){
int j = i;
while(j < m && order[j] == order[i]){
j ++;
}
int t = order[i].x , id = order[i].y , cnt = j - i;
i = j;
score[id] -= t - last[id] - 1;
if(score[id] < 0){
score[id] = 0;
}
if(score[id] <= 3){
st[id] = false;
}
// 以上T时刻之前
score[id] += cnt * 2;
if(score[id] > 5){
st[id] = true;
}
last[id] = t;
}
for(int i = 1;i <= n; i++){
if(last[i] < T){
score[i] -= T - last[i];
if(score[i] <= 3){
st[i] = false;
}
}
}
// 统计
int res = 0;
for(int i = 1; i <= n; i++){
res += st[i];
}
printf("%d\n",res);
return 0;
}

边栏推荐
- 2 Gigabit Optical + 6 Gigabit Electric Rail Type Managed Industrial Ethernet Switch Supports X-Ring Redundant Ring One-key Ring Switch
- STM8S-----option byte
- 全网没有之一的JMeter 接口测试流程详解
- How to drop all tables under database in MySQL
- 三分建设,七分管理!产品、系统、组织三管齐下节能降耗
- 系统太多,多账号互通如何实现?
- [Study Notes Dish Dog Learning C] Dynamic Memory Management
- How to read the resources files in the directory path?
- Architecture of the actual combat camp module three operations
- 倒计时2天,“文化数字化战略新型基础设施暨文化艺术链生态建设发布会”启幕在即
猜你喜欢

docker+bridge+redis master-slave+sentry mode

倒计时2天,“文化数字化战略新型基础设施暨文化艺术链生态建设发布会”启幕在即

高效IO模型

Rongyun "Audio and Video Architecture Practice" technical session [complete PPT included]

数组相关 内容 解析

Why use Selenium for automated testing

base address: environment variable

网络工程师入门必懂华为认证体系,附系统学习路线分享

Basic form validation process
The general SQL injection flow (sample attached)
随机推荐
View mysql deadlock syntax
【观察】超聚变:首提“算网九阶”评估模型,共建开放繁荣的算力网络
Basic form validation process
自定义通用分页标签01
There are n steps in total, and you can go up to 1 or 2 steps each time. How many ways are there?
In the season of going overseas, the localization of Internet tips for going overseas
tkmapper的crud示例:
JVM内存和垃圾回收-07.堆
Zabbix set up email alert + enterprise WeChat alert
Dong mingzhu live cold face away, when employees frequency low-level mistakes, no one can understand their products
pytorch applied to MNIST handwritten font recognition
逻辑漏洞----其他类型
2 Gigabit Optical + 6 Gigabit Electric Rail Type Managed Industrial Ethernet Switch Supports X-Ring Redundant Ring One-key Ring Switch
自制蓝牙手机app控制stm8/stm32/C51板载LED
网络工程师入门必懂华为认证体系,附系统学习路线分享
typescript type 和 interface 的区别
How to drop all tables under database in MySQL
仿牛客论坛项目梳理
How many ways do you know about communication between multiple threads?
Flink原理流程图简单记录