출처 https://swexpertacademy.com/main/solvingProblem/solvingProblem.do
중요한 점은 STL 사용시 iterator를 사용한다면 end() 참조시에 그 값은 공백이라는 점.
마지막 내용을 참조하고 싶으면 it = de.end(); 후에 *(it) 가 아니고 *(--it)를 사용해야 한다.
그리고 스트링을 int로 바꾸는 방법은 algorithm 헤더 선언 후에 atoi(str.c_str())이거지만
그냥 char형을 int로 바꾸는 방법은 char ch; 에서 ch-'0' 해주면 된다.
#include <iostream>
#include <string>
#include <deque>
#include <queue>
#include <algorithm>