728x90
https://www.acmicpc.net/problem/10828
문제 풀이
스택 구현의 아주 기본이 되는 문제이다.
느낀 점
STL에서 제공되는 컨테이너를 사용해서 풀었다. 기본적으로 DS를 다듬을 기회가 생겼다.
코드
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int n, tmp;
string command;
stack<int> s;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> command;
if (command == "push") {
cin >> tmp;
s.push(tmp);
}
else if (command == "pop") {
if (s.empty()) cout << "-1" << "\n";
else {
cout << s.top() << "\n";
s.pop();
}
}
else if (command == "size") {
cout << s.size() << "\n";
}
else if (command == "empty") {
cout << s.empty() << "\n";
}
else {
if (s.empty()) cout << "-1" << "\n";
else cout << s.top() << "\n";
}
}
}
'문제 풀이 > 백준(BOJ)' 카테고리의 다른 글
[C++] 백준 9012번 : 괄호 (0) | 2021.07.21 |
---|---|
[C++] 백준 10773번 : 제로 (0) | 2021.07.21 |
[C++] 백준 1676번 : 팩토리얼 0의 개수 (0) | 2021.07.19 |
[C++] 백준 9375번 : 패션왕 문희조 (0) | 2021.07.19 |
[C++] 백준 1010번 : 다리 놓기 (0) | 2021.07.19 |
댓글