首页 > 学院 > 开发设计 > 正文

refresh的停车场

2019-11-10 18:32:25
字体:
来源:转载
供稿:网友

PRoblem Description refresh最近发了一笔横财,开了一家停车场。由于土地有限,停车场内停车数量有限,但是要求进停车场的车辆过多。当停车场满时,要进入的车辆会进入便道等待,最先进入便道的车辆会优先 进入停车场,而且停车场的结构要求只出去的车辆必须是停车场中最后进去的车辆。现告诉你停车场容量N以及命令数M,以及一些命令(Add num 表示车牌号为num的车辆要进入停车场或便道, Del 表示停车场中出去了一辆车,Out 表示便道最前面的车辆不再等待,放弃进入停车场)。假设便道内的车辆不超过1000000. Input 输入为多组数据,每组数据首先输入N和M(0< n,m <200000),接下来输入M条命令。 Output 输入结束后,如果出现停车场内无车辆而出现Del或者便道内无车辆而出现Out,则输出Error,否则输出停车场内的车辆,最后进入的最先输出,无车辆不输出。 Example Input

2 6Add 18353364208Add 18353365550Add 18353365558Add 18353365559DelOut

Example Output

1835336555818353364208

Hint

Author

#include <iostream>#include <algorithm>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <bits/stdc++.h>#include <stack>#include <deque>#include <queue>using namespace std;typedefstruct node{ char p[20];}ras;int main(){ stack< ras> p; queue <ras> g; int n, m; while(~scanf("%d%d", &n, &m)) { while(!p.empty()) { p.pop(); } while(!g.empty()) { g.pop(); } int top=1; while(m--) { char kk[5]; scanf("%s", kk); if(strcmp(kk, "Add")==0) { struct node l; scanf("%s", l.p); if(p.size()<n) { p.push(l); } else g.push(l); } else if(strcmp(kk, "Del")==0) { if(p.empty()) { top=0; } else { p.pop(); if(!g.empty()) { p.push(g.front()); g.pop(); } } } else if(strcmp(kk, "Out")==0) { if(g.empty()) { top=0; } else g.pop(); } } if(top) while(!p.empty()) { printf("%s/n", p.top().p); p.pop(); } else printf("Error/n"); } return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表