首页 > 代码库 > fzu-1894 志愿者选拔-单调队列
fzu-1894 志愿者选拔-单调队列
转战单调队列,争取省赛前做完。。。。
这个题是很裸的单调队列。
不能用stl让人很蛋疼。。。。
就是用一个队列保存当前队伍的信息,如果来了一个大的,就把前面的小的挤掉。
#include<stdio.h> #include<string.h> #include<algorithm> #include<iostream> #include<queue> #include<stack> using namespace std; #define maxn 55000 #define INF 99999999 struct list { char name[6]; int val; int ip; }peo[1000000],p; int main() { int T,i,j; char str[1100]; scanf("%d",&T); while(T--) { scanf("%s",str); int head=1; int wei=0; int st=1; for(i=1;;) { scanf("%s",str); if(str[0]==‘C‘) { scanf("%s %d",p.name,&p.val); p.ip=i; for(j=wei;j>=head;j--) { if(peo[j].val<=p.val)wei--; else break; } wei++; peo[wei]=p; i++; } else if(str[0]==‘G‘) { if(peo[head].ip==st)head++; st++; } else if(str[0]==‘Q‘) { if(head>wei) { printf("-1\n"); continue; } printf("%d\n",peo[head].val); } else break; } } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。