标签:class tac font main stream 正整数 ace tput 不为
比起第一题,本题加了另外一个操作,访问栈顶元素(编号3,保证访问栈顶元素时或出栈时栈不为空),现在给出这N此操作,输出结果。
N
N次操作(1入栈 2出栈 3访问栈顶)
K行(K为输入中询问的个数)每次的结果
6
1 7
3
2
1 9
1 7
3
7
7
对于50%的数据 N≤1000 入栈元素≤200
对于100%的数据 N≤100000入栈元素均为正整数且小于等于10^4
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int size,stack[10000+15],zc,N; int main() { cin>>N; for(int i=1;i<=N;i++) { cin>>zc; if(zc==1) { size++; cin>>stack[size]; } if(zc==2) { size--; } if(zc==3) cout<<stack[size]<<endl; } return 0; }
标签:class tac font main stream 正整数 ace tput 不为
原文地址:http://www.cnblogs.com/Shy-key/p/6367079.html