队列
//33MS 1972KB
#include <stdio.h>
#include <string.h>
#include <queue>
#include <algorithm>
using namespace std;
const int MAX=1e5+5;
queue<pair<int,int> >Q;
void read(int &x)
{
int f=1;x=0;char c=getchar();
while (c>'9'||c<'0'){if (c=='-')f=-1;c=getchar();}
while (c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
x*=f;
}
int main ()
{
int n,x,t,a,b;
read(n);
while (!Q.empty()) Q.pop();
for (int k=0;k<n;k++)
{
read(x);read(t);
while (!Q.empty()&&Q.front().second<=t) Q.pop();
switch(x)
{
case 1:read(a);read(b);
Q.push(make_pair(a,t+b));
break;
case 2:
if (!Q.empty()) Q.pop();
break;
case 3:
if (!Q.empty()) printf ("%d\n",Q.front().first);
else printf ("-1\n");
break;
}
}
return 0;
}
本文介绍了一个使用C++实现的学习任务处理系统,通过队列模拟来管理不同类型的任务请求,如添加任务、删除任务和查询当前任务等操作。该系统能够有效处理一系列任务指令,并在特定的时间点返回当前最紧急的任务。
475

被折叠的 条评论
为什么被折叠?



