본문 바로가기

프로그래밍/Algorithm

백준 스택 - 스택 구현하기 10828

 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <stdio.h>
#include <iostream>
#include <stack>
#include <string>
 
using namespace std;
 
int main() {
    int n;
    string doThis;
    cin >> n ;
 
    stack<int> st;
 
    for(int i = 0; i < n; i++ ) {
 
        cin >> doThis;
 
        if(doThis == "push") {
            int num;
            cin >> num;
            st.push(num);
        } else if (doThis == "pop") {
            if(!st.empty()){
                cout << st.top() << endl;
                st.pop();
            }else {
                cout << "-1" << endl;
            }
        } else if (doThis == "size") {
            cout << st.size() << endl;
 
        } else if (doThis == "empty") {
            if(st.empty()) {
                cout << "1" << endl;
            } else {
                cout << "0" << endl;
            }
 
        } else if (doThis == "top") {
            if(!st.empty()) {
                cout << st.top() << endl;
            } else {
                cout << "-1" << endl;
            }
        }
 
    }
    return 0;
}
cs