hdu杭电1702 ACboy needs your help again!

Problem Description

ACboy was kidnapped!! he miss his mother very much and is very scare now.You can’t image how dark the room he was put into is, so poor :(.As a smart ACMer, you want to get ACboy out of the monster’s labyrinth.But when you arrive at the gate of the maze, the monste say :" I have heard that you are very clever, but if can’t solve my problems, you will die with ACboy."The problems of the monster is shown on the wall:Each problem’s first line is a integer N(the number of commands), and a word "FIFO" or "FILO".(you are very happy because you know "FIFO" stands for "First In First Out", and "FILO" means "First In Last Out").and the following N lines, each line is "IN M" or "OUT", (M represent a integer).and the answer of a problem is a passowrd of a door, so if you want to rescue ACboy, answer the problem carefully!

Input

The input contains multiple test cases.The first line has one integer,represent the number oftest cases.And the input of each subproblem are described above.

Output

For each command "OUT", you should output a integer depend on the word is "FIFO" or "FILO", or a word "None" if you don’t have any integer.

Sample Input

44 FIFOIN 1IN 2OUTOUT4 FILOIN 1IN 2OUTOUT5 FIFOIN 1IN 2OUTOUTOUT5 FILOIN 1IN 2OUTIN 3OUT

Sample Output

122112None23

#include<cstdio>#include<cstring>#include<stack>#include<queue>using namespace std;stack<int>a;queue<int>b;int main(){char s[10100],s1[10];int t,c,n;scanf("%d",&t);while(t–){scanf("%d %s",&n,s);if(strcmp(s,"FIFO")==0){while(n–){scanf("%s",s1);if(strcmp(s1,"IN")==0){scanf("%d",&c);b.push(c);}else{if(b.empty()) printf("None\n");else{printf("%d\n",b.front());b.pop();}}}}else{while(n–){scanf("%s",s1);if(strcmp(s1,"IN")==0){scanf("%d",&c);a.push(c);}else{if(a.empty()) printf("None\n");else{printf("%d\n",a.top());a.pop();}}}}while(!a.empty()) a.pop();while(!b.empty()) b.pop();}return 0;}

#include<stdio.h>#include<string.h>int main(){int t,n,i;char s1[50],s2[50];int b[100];scanf("%d",&t);while(t–){scanf("%d",&n);getchar();scanf("%s",s1);int cnt=0,num=0;if(strcmp(s1,"FIFO")==0){for(i=0;i<n;++i){scanf("%s",s2);if(strcmp(s2,"IN")==0){scanf("%d",&b[cnt]);++cnt;}if(strcmp(s2,"OUT")==0){if(cnt!=num){printf("%d\n",b[num]);++num;}else printf("None\n");}}}else if(strcmp(s1,"FILO")==0){for(i=0;i<n;++i){scanf("%s",s2);if(strcmp(s2,"IN")==0){++cnt;scanf("%d",&b[cnt]);}if(strcmp(s2,"OUT")==0){if(cnt>0){printf("%d\n",b[cnt]);–cnt;}else printf("None\n");}}}}return 0;}

版权声明:本文为博主原创文章,,未经博主允许不得转载。

有的旅行是为了体验生活,感悟人生。

hdu杭电1702 ACboy needs your help again!

相关文章:

你感兴趣的文章:

标签云: