BOJ - 18258 - 큐 2
문제
18258번: 큐 2
문제 개념
- 첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 2,000,000)이 주어진다.
- 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다.
구현
#include <iostream>
#include <queue>
#include <string>
using namespace std;
int main()
{
ios_base :: sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int num;
cin >> num;
queue<int> q;
queue<int> answer;
for(int i=0; i < num; i++)
{
string temp;
cin >> temp;
if(temp == "push")
{
int tmp;
cin >> tmp;
q.push(tmp);
}
else if(temp == "pop")
{
if(q.empty())
answer.push(-1);
else
{
answer.push(q.front());
q.pop();
}
}
else if(temp == "size")
answer.push(q.size());
else if(temp == "empty")
answer.push(q.empty());
else if(temp == "front")
{
if(q.empty())
answer.push(-1);
else
answer.push(q.front());
}
else if(temp == "back")
{
if(q.empty())
answer.push(-1);
else
answer.push(q.back());
}
}
while (!answer.empty())
{
cout << answer.front() << '\n';
answer.pop();
}
return 0;
}
SOL
- 큐의 명령을 수행할 큐
- 명령을 수행한 결과 값을 저장할 큐
Reference & 다른 PS 모음집
https://github.com/ggh-png/PS
STACK & QUEUE