https://www.acwing.com/problem/content/1243/
稍复杂一些的模拟题,但是若是暴力做法
即将a[i][j]定义为i时刻id为j的优先级
即可双重循环枚举每个时刻,每个id所有组合
在此情况下再判断这样的a[i][j]是否满足进入优先缓存st[i]中,a[i][j]进行优先级更新;
但是题目数据为1e5,即O(n^2)明显无法满足要求
如此可以从其他角度优化,Y总的思路是,将无订单的,即不需要更新的放到下一次有订单的时候
这样就不需要考虑没有订单的店了
并且sort一遍,由于是二元组,因此sort优先按照第一个关键字id排序,这样,id一样的便会在一起
由于排序在一起,id相同,时间相同的不同任务,则可以认为是同一个任务
#include <cstdio>
#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 score[N], last[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;
}
标签:优先级,int,d%,order,1241,score,外卖,id From: https://www.cnblogs.com/lxl-233/p/16789281.html