BOJ 10828: 스택 구현
[문제 바로가기](10828번: 스택)
//STL 사용
#include<iostream>
#include<string>
#include<stack>
using namespace std;
const int MAX_st_SIZE = 1000;
//10828
int main() {
int num = 0;
string str;
cin >> num;
stack<int> st;
int x;
for (int i = 0; i < num; i++) {
cin >> str;
if (str == "push") {
cin >> x;
st.push(x);
}
else if (str == "pop") {
if (!st.empty()) {
cout << st.top() << endl;
st.pop();
}
else
cout << -1 << endl;
}
else if (str == "size")
cout << st.size() << endl;
else if (str == "empty") {
if (st.empty())
cout << 1 << endl;
else
cout << 0 << endl;
}
else if (str == "top")
if (st.empty())
cout << -1 << endl;
else
cout << st.top() << endl;
}
return 0;
}
Author And Source
이 문제에 관하여(BOJ 10828: 스택 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mam07065/BOJ-10828-스택-구현저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)