首页 > 代码库 > 3186 队列练习 2

3186 队列练习 2

3186 队列练习 2

 

 时间限制: 1 s
 空间限制: 128000 KB
 题目等级 : 黄金 Gold
 
 
题目描述 Description

(此题与队列练习1相比改了2处:1加强了数据 2不保证队空时不会出队)
给定一个队列(初始为空),只有两种操作入队和出队,现给出这些操作请
输出最终的队头元素。 操作解释:1表示入队,2表示出队

输入描述 Input Description

N(操作个数)
N个操作(如果是入队则后面还会有一个入队元素)
具体见样例(输入保证队空时不会出队)

输出描述 Output Description

最终队头元素,若最终队空,或队空时有出队操作,输出”impossible!”(不含引号)

样例输入 Sample Input

3
1 2
2
2

样例输出 Sample Output

impossible!

数据范围及提示 Data Size & Hint

对于100%的数据  N≤100000 元素均为正整数且小于等于10^8

 1 #include<iostream>
 2 #include<cstdio>
 3 using namespace std;
 4 int a[100001];
 5 int b[100001];
 6 int c[100001];
 7 int main()
 8 {
 9     int n;
10     cin>>n;
11     for(int i=1;i<=n;i++)
12      {
13          cin>>a[i];
14          if(a[i]==1)
15           {
16               cin>>b[i];
17           }
18      }
19      int heap=0,tail=0;
20      for(int i=1;i<=n;i++)
21       {
22           if(a[i]==1)
23            {
24                tail++;
25                a[tail]=b[i];
26            }
27            if(a[i]==2)
28             {
29                 heap++;
30             }
31             if(heap>tail)
32              {
33                  cout<<"impossible!";
34                  return 0;
35              }
36       }
37       if(heap==tail)
38        {
39            cout<<"impossible!";
40            return 0;
41        }
42        cout<<a[heap+1];
43        return 0;
44 }

 

3186 队列练习 2