문제 출처:https://www.acmicpc.net/problem/10828
그저 stack을 구현하는 문제입니다. 따로 c++에서 STL로 제공해주는 함수들이 있으니 활용해봤습니다.
코드는 다음과 같습니다:
#include <iostream>
#include <stack>
using namespace std ;
int main(){
ios::sync_with_stdio(false) ;
cin.tie(NULL) ; cout.tie(NULL) ;
stack<int> ss ;
int line_number, num ;
string temp ;
cin >> line_number ;
for(int i = 0 ; i < line_number ; i++){
cin >> temp ;
if(temp.compare("push") == 0){
cin >> num ;
ss.push(num) ;
}
else if(temp.compare("pop") == 0){
if(ss.empty())
cout << "-1" << endl ;
else{
cout << ss.top() << endl ;
ss.pop() ;
}
}
else if(temp.compare("size") == 0)
cout << ss.size() << endl ;
else if(temp.compare("empty") == 0)
cout << ss.empty() << endl ;
else if(temp.compare("top") == 0){
if(ss.empty())
cout << "-1" << endl ;
else
cout << ss.top() << endl ;
}
}
return 0 ;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/BackJoon/HPS/P10828_Stack.cpp
훈수 및 조언은 언제든 환영입니다.