zoukankan      html  css  js  c++  java
  • ZOJ 3210 A Stack or A Queue? (I)

    A Stack or A Queue?

    Time Limit: 1 Second      Memory Limit: 32768 KB

    Do 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 - stack or queue?

    Notice that here we assume that none of the integers are popped out before all the integers are pushed into the structure.

    Input

    There are multiple test cases. The first line of input contains an integer T (T <= 100), indicating the number of test cases. Then T test cases 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 of each 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).

    Output

    For 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
    
     1 #include <iostream>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <string>
     5 #include <iomanip>
     6 #include <algorithm>
     7 #include <queue>
     8 #include <vector>
     9 #include <map>
    10 #include <stack>
    11 using namespace std;
    12 #define maxn 110
    13 int a[maxn], b[maxn];
    14 int T, N, temp, cnt;
    15 int main(){
    16     scanf("%d", &T);
    17     while(T--){
    18         stack <int> s;
    19         queue <int> q;
    20         
    21         scanf("%d", &N);
    22         for(int i = 1; i <= N; i++){
    23             scanf("%d", &temp);
    24             s.push(temp); q.push(temp);
    25         }
    26         for(int i = 1; i <= N; i++) scanf("%d", &b[i]);
    27         
    28         bool flagq = true, flags = true;
    29         cnt = 1;
    30         while(!q.empty()){
    31             int temp1 = q.front();
    32             if(temp1 != b[cnt]){
    33                 flagq = false;break;
    34             }
    35             q.pop(); cnt++;
    36         }
    37         cnt = 1;
    38         while(!s.empty()){
    39             int temp1 = s.top();
    40             if(temp1 != b[cnt]){
    41                 flags = false;break;
    42             }
    43             s.pop(); cnt++;
    44         }
    45         if(flagq && flags) printf("both
    ");
    46         else if(flagq && !flags) printf("queue
    ");
    47         else if(!flagq && flags) printf("stack
    ");
    48         else printf("neither
    ");
    49         
    50         
    51     }
    52     
    53     return 0;
    54 }
  • 相关阅读:
    php 魔术方法
    有用的函数系统采集(一)
    php后期静态绑定
    php对象引用及序列化
    php文件操作
    复习mysql视图总结
    jQuery调用WebService详解
    这个网站的界面描述甚好,我喜欢
    喜欢和技术有关的一切~
    Introduction
  • 原文地址:https://www.cnblogs.com/titicia/p/3917075.html
Copyright © 2011-2022 走看看