K - 数据结构实验之栈与队列十一:refresh的停车场

Description

refresh最近发了一笔横财,开了一家停车场。由于土地有限,停车场内停车数量有限,但是要求进停车场的车辆过多。当停车场满时,要进入的车辆会进入便道等待,最先进入便道的车辆会优先

进入停车场,而且停车场的结构要求只出去的车辆必须是停车场中最后进去的车辆。现告诉你停车场容量N以及命令数M,以及一些命令(Add num 表示车牌号为num的车辆要进入停车场或便道,

Del 表示停车场中出去了一辆车,Out 表示便道最前面的车辆不再等待,放弃进入停车场)。假设便道内的车辆不超过1000000.
Input

输入为多组数据,每组数据首先输入N和M(0< n,m <200000),接下来输入M条命令。
Output

输入结束后,如果出现停车场内无车辆而出现Del或者便道内无车辆而出现Out,则输出Error,否则输出停车场内的车辆,最后进入的最先输出,无车辆不输出。
Sample

Input

2 6
Add 18353364208
Add 18353365550
Add 18353365558
Add 18353365559
Del
Out
Output

18353365558
18353364208

#include <stdio.h>
#include <string.h>

int main()
{
    
    
    int n,m,i,j,flag;
    int top,top1;
    char a[200000][20],c[20],b[200000][20],d[20];
    while(scanf("%d%d",&m,&n) != EOF)
    {
    
    
        flag = 0;top=0,top1=0;
        for(i = 0;i < n;i++)
        {
    
    
            scanf("%s",c);
            if(strcmp("Add",c) == 0)
            {
    
    
                scanf("%s",d);
                if(top < m)
                {
    
    
                    top++;
                    strcpy(a[top],d);
                }
                else
                {
    
    
                    top1++;
                    strcpy(b[top1],d);
                }

            }
            if(strcmp("Del",c) == 0)
            {
    
    
                if(top<1)
                {
    
    
                    flag = 1;
                }
                else
                {
    
    
                    if(top1>0)
                    {
    
    
                        strcpy(a[top],b[1]);
                        for(j = 1;j < top1;j++)
                        {
    
    
                            strcpy(b[j],b[j+1]);
                        }
                        top1--;
                    }
                    else
                    top--;
                }
            }
            if(strcmp("Out",c) == 0)
            {
    
    
                if(top1 < 1)
                    flag = 1;
                else
                {
    
    
                for(j = 1;j < top1;j++)
                {
    
    
                    strcpy(b[j],b[j+1]);
                }
                top1--;
                }
            }
        }
        if(flag)
        {
    
    
            printf("Error\n");
        }
        else
        {
    
    
            for(i = top;i >= 1;i--)
            {
    
    
                printf("%s\n",a[i]);
            }
        }
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/a675891/article/details/103955181