본문 바로가기

코딩 테스트

백준 2493 탑

스택 문제 어렵네... 생각이 안남

 

#include <iostream>
#include <algorithm>
#include <stack>
#include <vector>

using namespace std;



int main(void)
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int num;
	cin >> num;

	stack<pair<int, int>> sta;

	for (int i = 0; i < num; ++i)
	{
		int n;
		cin >> n;

		while (!sta.empty())
		{
			if (sta.top().first > n)
			{
				cout << sta.top().second + 1 << " ";
				break;
			}
			sta.pop();
		}
		if (sta.empty())
		{
			cout << "0 ";
		}
		sta.push(make_pair(n,i));
	}
	
	return 0;
}

'코딩 테스트' 카테고리의 다른 글

백준 11727 타일링  (0) 2024.10.15
백준 17829 - 222풀링  (0) 2024.09.09
백준 1992 쿼드트리  (0) 2024.09.03
백준 - 14400 편의점 2  (0) 2024.09.03
백준 - 1541 잃어버린 괄호  (0) 2024.09.03