1 条题解

  • 0
    @ 2024-7-25 13:29:27

    参考答案:

    #include<iostream>
    
    using namespace std;
    
    const int N = 100010;
    int q[N], tt = -1, hh;
    
    int main()
    {
        string op;
        int m;
    
        cin >> m;
        while (m--)
        {
            int x;
            cin >> op;
            if (op == "push")
            {
                cin >> x;
                q[++tt] = x;
            }
            else if (op == "pop") ++hh;
            else if (op == "empty") cout << (hh <= tt ? "No" : "Yes") << endl;
            else cout << q[hh] << endl;
        }
    
        return 0;
    }
    
    • 1

    信息

    ID
    74
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    递交数
    2
    已通过
    1
    上传者