题解 | #愤怒的小鸟#

愤怒的小鸟

https://www.nowcoder.com/practice/597c32f0b3cf43beb1d01e7ddd87cc32

单调栈

#include <iostream>
#include <bits/stdc++.h>
#include <stack>
using namespace std;

int main() {
    int n;
    cin>> n;
    vector<int> h(n);
    for(int i=0;i<n;i++){
        cin>> h[i];
    }
    stack<int> stk; // 单调减,保存当前能炸到i的点的个数
    vector<int> res(n);
    for(int i=0;i<n;i++){
        while(!stk.empty()&& h[i]>stk.top()){
            stk.pop();
        }
        res[i] += i - stk.size();
        stk.push(h[i]);
    }
    stk = stack<int>();
    for(int i=n-1;i>=0;i--){
        while(!stk.empty()&&h[i]>stk.top()){
            stk.pop();
        }
        res[i] += (n-1 -i) - stk.size();
        stk.push(h[i]);
    }
    for(int i=0;i<n;i++){
        cout << res[i] << " ";
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务