[백준/BOJ] 백준 10828번 : 스택

2020. 8. 24. 23:03알고리즘 문제풀이

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

 

10828번: 스택

첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 �

www.acmicpc.net

스택을 사용하여 문제를 해결했다.

 

코드

#include <iostream>
#include <algorithm>
#include <string>
#include <stack>
using namespace std;

int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);

	int n;
	string input_s;
	int input_i;
	stack<int> s;

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

		if (input_s == "push")
		{
			cin >> input_i;
			s.push(input_i);
		}

		else if (input_s == "pop")
		{
			if (s.empty()) //스택이 비어 있을때
				cout << -1 << "\n";
			
			else
			{
				cout << s.top() << "\n";
				s.pop();
			}
		}

		else if (input_s == "size")
		{
			cout << s.size() << "\n";
		}

		else if (input_s == "empty")
		{
			if (s.empty()) //스택이 비어 있을때
				cout << 1 << "\n";

			else
				cout << 0 << "\n";
		}

		else if (input_s == "top")
		{
			if (s.empty()) //스택이 비어 있을때
				cout << -1 << "\n";

			else
				cout << s.top() << "\n";
		}
	}
	return 0;
}