본문 바로가기
문제 풀이/백준(BOJ)

[C++] 백준 18258번 : 큐 2

by 희조당 2021. 7. 23.
728x90

https://www.acmicpc.net/problem/18258

 

18258번: 큐 2

첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 2,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지

www.acmicpc.net


 문제 풀이

기본 큐 문제이다. STL에서 지원하는 컨테이너를 사용하면 쉽다!

 느낀 점

이번 기회로 DS를 다시 복습하는 기분이라 만족스럽다.

 코드

#include <iostream>
#include <queue>
#include <string>

using namespace std;

int n, tmp;
string command;
queue<int> q;

int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> command;
		if (command == "push") {
			cin >> tmp;
			q.push(tmp);
		}
		else if (command == "pop") {
			if (q.empty()) cout << "-1" << "\n";
			else {
				cout << q.front() << "\n";
				q.pop();
			}
		}
		else if (command == "size") {
			cout << q.size() << "\n";
		}
		else if (command == "empty") {
			if (q.empty()) cout << "1" << "\n";
			else cout << 0 << "\n";
		}
		else if (command == "front") {
			if (q.empty()) cout << "-1" << "\n";
			else cout << q.front() << "\n";
		}
		else if (command == "back") {
			if (q.empty()) cout << "-1" << "\n";
			else cout << q.back() << "\n";
		}
	}
}

댓글