[백준] 2493번

Jeanine·2022년 3월 7일
0

baekjoon

목록 보기
7/120
post-thumbnail

💻 C++ 기반

https://www.acmicpc.net/problem/2493

✔️새롭게 탑 높이를 받을 때마다 이 높이보다 작은 탑들은 무시해도 됨

#include <cstdio>
#include <stack>
#include <algorithm>

using namespace std;

int main()
{
    int N;
    scanf("%d", &N);

    stack<pair<int, int> > buildings;
    buildings.push(make_pair(100000001, 0));

    for (int i = 1; i <= N; i++)
    {
        int height;
        scanf("%d", &height);
        while (buildings.top().first < height)
        {
            buildings.pop();
        }
        printf("%d ", buildings.top().second);
        buildings.push(make_pair(height, i));
    }

    return 0;
}
profile
Grow up everyday

0개의 댓글