티스토리 뷰
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main() {
stack<int> st;
int n;
cin >> n;
while (n--) {
string cmd;
cin >> cmd;
if (cmd == "push") {
int x;
cin >> x;
st.push(x);
} else if (cmd == "pop") {
if (st.empty()) cout << -1 << endl;
else {
cout << st.top() << endl;
st.pop();
}
} else if (cmd == "size") {
cout << st.size() << endl;
} else if (cmd == "empty") {
if (st.empty())cout << 1 << endl;
else cout << 0 << endl;
} else if (cmd == "top") {
if (st.empty()) cout << -1 << endl;
else cout << st.top() << endl;
}
}
}
'algorithm > 백준' 카테고리의 다른 글
[C++]백준 9012: 괄호 (0) | 2020.11.22 |
---|---|
[C++]백준 10799: 쇠막대기 (0) | 2020.11.22 |
[python]백준 11098: 첼시를 도와줘! (0) | 2020.11.16 |
[python] 백준 11557번: Yangjojang of The Year (0) | 2020.11.16 |
[c++14]백준 2550: 인공지능 시계 (0) | 2020.11.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 다익스트라
- 피보나치
- 👼
- 꿀따기
- boj
- web
- FIBO
- 프로그레머스
- programmers
- 2
- 21758
- python
- 스택
- 괄호
- 넓이
- 백준
- 더하기
- 파이썬
- 직업군 추천
- 쇠막대기
- c++
- HackCTF
- openCV
- 1
- math
- 4
- 7567
- forensic
- 나머지
- 카카오 2021 블라인드 테스트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함