250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- union_find
- Properties
- javascript
- 힙덤프
- set
- 리소스모니터링
- dfs
- 스프링부트
- priority_queue
- html
- math
- spring boot
- Calendar
- string
- Union-find
- alter
- BFS
- sql
- date
- deque
- NIO
- JPA
- map
- 스택
- Java
- CSS
- scanner
- 큐
- GC로그수집
- List
Archives
- Today
- Total
매일 조금씩
백준 10866번: 덱 본문
728x90
반응형
덱 STL을 활용하면 쉽게 풀수 있는 문제였다.
#include <iostream>
#include <deque>
#include <string>
using namespace std;
int main(void) {
ios_base::sync_with_stdio(0);
cin.tie(0); //cin 실행속도 향상
int n;
cin >> n;
deque<int> dq;
for (int i = 0; i < n; i++) {
string m;
cin >> m;
if (m == "push_front") {
int pf;
cin >> pf;
dq.push_front(pf);
}
else if (m == "push_back") {
int pb;
cin >> pb;
dq.push_back(pb);
}
else if (m == "pop_front") {
if (dq.empty())
cout << "-1\n";
else {
cout << dq.front() << "\n";
dq.pop_front();
}
}
else if (m == "pop_back") {
if (dq.empty())
cout << "-1\n";
else {
cout << dq.back() << "\n";
dq.pop_back();
}
}
else if (m == "size") {
cout << dq.size() << "\n";
}
else if (m == "empty") {
cout << dq.empty() << "\n";
}
else if (m == "front") {
if (dq.empty())
cout << "-1\n";
else
cout << dq.front() << "\n";
}
else if (m == "back") {
if (dq.empty())
cout << "-1\n";
else
cout << dq.back() << "\n";
}
}
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 5430번: AC (0) | 2020.04.09 |
---|---|
백준 1021번: 회전하는 큐 (0) | 2020.04.08 |
백준 1966번: 프린터 큐 (0) | 2020.04.08 |
백준 11866번: 요세푸스 문제 0 (0) | 2020.04.07 |
백준 2164번: 카드 2 (0) | 2020.04.07 |