T3187 队列练习3 codevs
http://codevs.cn/problem/3187/
比起第一题,本题加了另外一个操作,访问队头元素(编号3,保证访问队头元素时或出队时队不为空),现在给出这N此操作,输出结果。
输入描述 Input Description
N
N次操作(1入队 2出队 3访问队头)
输出描述 Output Description
K行(K为输入中询问的个数)每次的结果
样例输入 Sample Input
6
1 7
3
2
1 9
1 7
3
样例输出 Sample Output
7
9
数据范围及提示 Data Size & Hint
对于50%的数据 N≤1000 入队元素≤200
对于100%的数据 N≤100000入队元素均为正整数且小于等于10^4
1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 5 using namespace std; 6 7 int a[200000+15]; 8 int N,x,m,head,tail; 9 10 int main() 11 { 12 cin>>N; 13 for(int i=1;i<=N;i++) 14 { 15 cin>>m; 16 if(m==1) 17 { 18 cin>>a[++tail]; 19 } 20 if(m==2) 21 { 22 head++; 23 } 24 if(m==3) 25 { 26 cout<<a[head+1]<<endl; 27 } 28 } 29 return 0; 30 }
——每当你想要放弃的时候,就想想是为了什么才一路坚持到现在。