当前位置:网站首页>外卖店优先级
外卖店优先级
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;
}

边栏推荐
- SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropri
- unsafe.Pointer, pointer, reference in golang
- 从图文展示到以云为核,第五代验证码独有的策略情报能力
- 数据湖(二十):Flink兼容Iceberg目前不足和Iceberg与Hudi对比
- Flink原理流程图简单记录
- 《nlp入门+实战:第八章:使用Pytorch实现手写数字识别》
- 跨境电商看不到另一面:商家刷单、平台封号、黑灰产牟利
- 系统太多,多账号互通如何实现?
- 董明珠直播时冷脸离场,员工频犯低级错误,自家产品没人能弄明白
- View mysql deadlock syntax
猜你喜欢

基于Qt的目录统计QDirStat

Pine Script | How to display and typeset a plot switch?

MCU C language -> usage, and meaning

Taurus.MVC WebAPI 入门开发教程1:框架下载环境配置与运行(含系列目录)。

Countdown to 2 days, the "New Infrastructure of Cultural Digital Strategy and Ecological Construction of Cultural Art Chain" will kick off soon

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

Hey, I had another fight with HR in the small group!

Pine脚本 | 如何显示和排版绘图开关?

【医保科普】维护医保基金安全,我们可以这样做

2022年最新海南建筑八大员(材料员)模拟考试试题及答案
随机推荐
MySQL 查询练习(1)
各位大佬好,麻烦问一下flink cdc oracle写入doris的时候,发现cpu异常,一下下跑
4路双向HDMI综合业务高清视频光端机8路HDMI高清视频光端机
一文详解DHCP原理及配置
FPGA parsing B code----serial 3
Mockito单元测试
4-way two-way HDMI integrated business high-definition video optical transceiver 8-way HDMI high-definition video optical transceiver
Taurus.MVC WebAPI 入门开发教程1:框架下载环境配置与运行(含系列目录)。
y86.第四章 Prometheus大厂监控体系及实战 -- prometheus存储(十七)
数组相关 内容 解析
网络工程师入门必懂华为认证体系,附系统学习路线分享
kingbaseES V8R2/R3 表在指定表空间,为何显示为默认表空间?
STM8S-----option byte
安装postgis时报找不到“POSTGIS_VERSION”这个函数
【医保科普】维护医保基金安全,我们可以这样做
FPGA解析B码----连载3
docker+bridge+redis master-slave+sentry mode
2 Gigabit Optical + 6 Gigabit Electric Rail Type Managed Industrial Ethernet Switch Supports X-Ring Redundant Ring One-key Ring Switch
2千兆光+6千兆电导轨式网管型工业级以太网交换机支持X-Ring冗余环网一键环网交换机
DIY电工维修如何拆卸和安装开关面板插座