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

[C++] 백준 10866번 : 덱

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

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

 

10866번: 덱

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

www.acmicpc.net


 문제 풀이

덱의 기본 구현을 묻는 문제였다!

 느낀 점

이번 기회에 덱을 공부할 수 있었다. 조만간 STL 컨테이너인 스택과 큐, 덱에 대해서 한번 정리글을 올려야겠다.

 코드

#include <iostream>
#include <deque>
#include <string>

using namespace std;

int n, tmp;
string command;
deque<int> dq;

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

	cin >> n;
	while (n--) {
		cin >> command;
		if (command == "push_front") {
			cin >> tmp;
			dq.push_front(tmp);
		}
		else if (command == "push_back") {
			cin >> tmp;
			dq.push_back(tmp);
		}
		else if (command == "pop_front") {
			if (dq.empty()) cout << "-1\n";
			else {
				cout << dq.front() << "\n";
				dq.pop_front();
			}
		}
		else if (command == "pop_back") {
			if (dq.empty()) cout << "-1\n";
			else {
				cout << dq.back() << "\n";
				dq.pop_back();
			}
		}
		else if (command == "size") {
			cout << dq.size() << "\n";
		}
		else if (command == "empty") {
			cout << dq.empty() << "\n";
		}
		else if (command == "front") {
			if (dq.empty()) cout << "-1\n";
			else cout << dq.front() << "\n";
		}
		else if (command == "back") {
			if (dq.empty()) cout << "-1\n";
			else cout << dq.back() << "\n";
		}
	}
}

댓글