首页 > 牛客编程巅峰赛 第十场第二题
头像
王培琳
编辑于 2020-12-19 11:22
+ 关注

牛客编程巅峰赛 第十场第二题

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * @param n int整型
     * @param a int整型vector
     * @return int整型
     */
int wwork(int n, vector<int>& a) {
        // write code here
        int counts = 0;
        stack<int> st;
        for (int i = 0; i < n;++i) {
            if (st.empty()) {
                st.push(a[i]);
            }
            else if(st.top()<a[i]) {
                st.push(a[i]);
            }
            else {
                while (!st.empty()&&st.top() > a[i]) {
                    st.pop();
                    ++counts;
                }
                st.push(a[i]);
            }
        }
        return counts;
    }
};


全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐