您的位置:首页 > 产品设计 > UI/UE

I. A Stack or A Queue?

2017-04-15 20:51 302 查看

I. A Stack or A Queue?

Time Limit: 1000msMemory Limit: 32768KB64-bit integer IO format: %lld     Java class name: MainSubmit Status Font PID:18117Do you know stack and queue? They're both important data structures. A stack is a "first in last out" (FILO) data structure and a queue is a "first in first out" (FIFO) one.Here comes the problem: given the order of some integers (it is assumed that the stack and queue are both for integers) going into the structure and coming out of it, please guess what kind of data structure it could be - stackor queue?Notice that here we assume that none of the integers are popped out before all the integers are pushed into the structure.InputThere are multiple test cases. The first line of input contains an integer T (T <= 100), indicating the number of test cases. Then T testcases follow.Each test case contains 3 lines: The first line of each test case contains only one integer N indicating the number of integers (1 <= N <=100). The second line of each test case contains N integers separated by a space, which are given in the order of going into the structure (that is, the first one is the earliest going in). The third line ofeach test case also contains N integers separated by a space, whick are given in the order of coming out of the structure (the first one is the earliest coming out).OutputFor each test case, output your guess in a single line. If the structure can only be a stack, output "stack"; or if the structure can only be a queue, output "queue"; otherwise if the structure can be either a stack or a queue,output "both", or else otherwise output "neither".Sample Input
4
3
1 2 3
3 2 1
3
1 2 3
1 2 3
3
1 2 1
1 2 1
3
1 2 3
2 3 1
Sample Output
stack
queue
both
neither
#include<iostream>#include<cstdio>#include<cmath>#include<cstring>#include<string>#include<algorithm>#include<stack>#include<queue>using namespace std;int main(){ //std::ios::sync_with_stdio(false); int t; while (cin>>t) {  while (t--)  {   int n;   cin >> n;   int a1[1000], a2[1000];   for (int i = 0; i < n; i++)    cin >> a1[i];   for (int i = 0; i < n; i++)    cin >> a2[i];   int flag1 = 0, flag2 = 0;   int n1 = n;   for (int i = 0; i < n; i++)   {     if (a1[i] != a2[--n1])     {      flag1 = 1;      break;     }   }   for (int i = 0; i < n; i++)   {     if (a1[i] != a2[i])     {      flag2 = 1;      break;     }   }   if (flag1 == 0 && flag2 == 0) puts("both");   else if (flag1 == 0 && flag2 ==1) puts("stack");   else if (flag1 ==1 && flag2 == 0) puts("queue");   else if(flag1==1&&flag2==1) puts("neither");  } } return 0;}
Submit 
                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: