zoukankan      html  css  js  c++  java
  • ZOJ3202-Second-price Auction(根据输入输出判断是队列还是栈)

    A Stack or A Queue?
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu

    Description

    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
    

    利用栈和队列的性质判断就好
    #include<cstdio>
    #include<string>
    #include<cstdlib>
    #include<cmath>
    #include<iostream>
    #include<cstring>
    #include<set>
    #include<queue>
    #include<algorithm>
    #include<vector>
    #include<map>
    #include<cctype>
    #include<stack>
    #include<sstream>
    #include<list>
    #include<assert.h>
    #include<bitset>
    #include<numeric>
    #define max_v 105
    #define eps 10e-6
    using namespace std;
    int a[max_v];
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int n;
            scanf("%d",&n);
            for(int i=0;i<n;i++)
                scanf("%d",&a[i]);
            int x;
            int isque=1;
            int isstack=1;
            for(int i=0;i<n;i++)
            {
                scanf("%d",&x);
                if(a[i]!=x)
                    isque=0;
                if(x!=a[n-i-1])
                    isstack=0;
            }
            if(isque&&isstack)
                printf("both
    ");
            else if(isque==1&&isstack==0)
                printf("queue
    ");
            else if(isque==0&&isstack==1)
                printf("stack
    ");
            else if(isque==0&&isstack==0)
                printf("neither
    ");
        }
        return 0;
    }


  • 相关阅读:
    hdu6354 杭电第五场 Everything Has Changed 计算几何
    hdu6351 Beautiful Now 杭电第五场 暴力枚举
    牛客多校第六场 J Heritage of skywalkert 随即互质概率 nth_element(求最大多少项模板)
    百度之星资格赛 调查问卷 bitset模板(直接将字符串转化成二进制数组并可以计算出十进制值)
    百度之星资格赛 子串查询 线段树
    牛客多校第五场 F take 期望转化成单独事件概率(模板) 树状数组
    牛客多校第五场 E room 二分图匹配 KM算法模板
    牛客第五场多校 J plan 思维
    idhttp提交post
    centos6.2 shutdown now关机进入单用户模式
  • 原文地址:https://www.cnblogs.com/yinbiao/p/9504188.html
Copyright © 2011-2022 走看看