F - 志愿者选拔
Time Limit:1500MS Memory Limit:32768KB 64bit IO Format:%I64d
& %I64u
Description
世博会马上就要开幕了,福州大学组织了一次志愿者选拔活动。
参加志愿者选拔的同学们排队接受面试官们的面试。参加面试的同学们按照先来先面试并且先结束的原则接受面试官们的考查。
面试中每个人的人品是主要考查对象之一。(提高人品的方法有扶老奶奶过街,不闯红灯等)
作为主面试官的John想知道当前正在接受面试的同学队伍中人品值最高的是多少。于是他请你帮忙编写一个程序来计算。
Output
对于每个询问Q,输出当前正在接受面试的队伍中人品最高的值,如果当前没有人正在接受面试则输出-1。
Sample Output
1000000000
0
-1
200
100
500
Hint
数据较大建议使用scanf,printf 不推荐使用STL
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int queue[1000000],rp_v[50000],T,rp,q_top,q_base,rp_top,rp_base,i;
char str[6];
int main()
{
scanf("%d",&T);
while(T--)
{
if(scanf("%s",str) && str[0]=='S')
{
q_top=-1;q_base=0;rp_top=-1;rp_base=0;
memset(queue,-1,sizeof(queue));
memset(rp_v,-1,sizeof(rp_v));
while(scanf("%s",str) && str[0]!='E')
{
if(str[0]=='C')
{
scanf("%*s%d",&rp);
q_top++;
queue[q_top]=rp;
//维护单调队列
//队列中没有元素
if(rp_top<rp_base)
{
rp_top++;
rp_v[rp_top]=rp;
}
//队列中有元素
else
{
while(rp_v[rp_top]<rp)
{
rp_top--;
if(rp_top<rp_base) break;
}
if(rp_top<rp_base)
{
rp_top++;
rp_v[rp_top]=rp;
}
else
{
rp_top++;
rp_v[rp_top]=rp;
}
}
}//if
else if(str[0]=='G')
{
if(queue[q_base]==rp_v[rp_base])
rp_base++;
q_base++;
}//else if
else if(str[0]=='Q')
{
if(rp_base>rp_top) printf("-1\n");
else printf("%d\n",rp_v[rp_base]);
}//else if
}
}
}
return 0;
}