• CODEVS 3137 栈练习1


    3137 栈练习1

     时间限制: 1 s

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

    给定一个栈(初始为空,元素类型为整数,且小于等于100),只有两个操作:入栈和出栈。先给出这些操作,请输出最终栈的栈顶元素。  操作解释:1表示入栈,2表示出栈

    输入描述 Input Description

    N(操作个数)

    N个操作(如果是入栈则后面还会有一个入栈元素)

    具体见样例(输入保证栈空时不会出栈)

    输出描述 Output Description

    最终栈顶元素,若最终栈空,输出”impossible!”(不含引号)

    样例输入 Sample Input

    3

    1 2

    1 9

    2

    样例输出 Sample Output

    2

    数据范围及提示 Data Size & Hint

    对于100%的数据  N≤1000 元素均为正整数且小于等于100


    #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int f[1010]={0},n,x,y,top=0; int main() { scanf("%d",&n); for (int i=1;i<=n;i++) { cin>>x; if (x==1) { cin>>y; top++; f[top]=y; } else { f[top]=0; top--; } } if (top==0) cout<<"impossible!"; else cout<<f[top]; return 0; }
  • 相关阅读:
    Nginx 反向代理接收用户包体方式
    Nginx http反向代理流程Proxy_pass模块
    Nginx 负载均衡一致性算法
    Nginx 负载均衡哈希算法:ip_hash与hash模块
    Nginx upstream模块
    Nginx upstream变量
    Nginx 反向代理与负载均衡基本原则
    19 浏览器缓存
    6 Cookie和Session
    5 Post和Get
  • 原文地址:https://www.cnblogs.com/xiaoqi7/p/5379978.html
Copyright © 2020-2023  润新知