티스토리 뷰
https://www.acmicpc.net/problem/5430
const fs = require('fs');
const [n, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const N = +n;
class Node {
constructor(item) {
this.item = item;
this.prev = null;
this.next = null;
}
}
class Deque {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
push_front(item) {
const node = new Node(item);
if (this.size() == 0) {
this.head = node;
this.tail = node;
} else {
this.head.prev = node;
node.next = this.head;
this.head = node;
}
this.length += 1;
}
push_back(item) {
const node = new Node(item)
if (this.size() == 0) {
this.head = node;
this.tail = node;
} else {
this.tail.next = node;
node.prev = this.tail;
this.tail = node;
}
this.length += 1;
}
pop_front() {
if (this.size() == 0) return -1;
const popItem = this.head;
this.head = this.head.next;
if (this.size() == 1) {
this.head = null;
} else {
this.head.prev = null;
}
this.length -= 1;
return popItem.item;
}
pop_back() {
if (this.size() == 0) return -1;
const popItem = this.tail;
this.tail = this.tail.prev;
if (this.size() == 1) {
this.tail = null;
} else {
this.tail.next = null;
}
this.length -= 1;
return popItem.item;
}
size() {
return this.length;
}
empty() {
if (this.length == 0) {
return 1;
} else {
return 0;
}
}
front() {
if (this.empty() == 1) return -1;
return this.head.item;
}
back() {
if (this.empty() == 1) return -1;
return this.tail.item;
}
}
let answer = [];
for (let i = 0; i < N; i++) {
let deque = new Deque();
const command = arr.shift().split('');
const leng = arr.shift();
let type = true; //트루면 정방향, 펄스면 역방향;
const data = JSON.parse(arr.shift())
data.forEach(v => {
deque.push_back(v);
})
let result;
for (let i = 0; i < command.length; i++) {
switch (command[i]) {
case 'R':
type = !type;
break;
case 'D':
if (deque.empty()) {
result = 'error';
break;
} else {
if (type) {
deque.pop_front();
} else {
deque.pop_back();
}
}
break;
}
}
if (result == 'error') {
answer.push(result)
continue;
}
result = [];
if (type) {
while (!deque.empty()) {
result.push(deque.pop_front());
}
} else {
while (!deque.empty()) {
result.push(deque.pop_back());
}
}
answer.push(JSON.stringify(result))
}
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1992번 : 쿼드트리 (0) | 2021.09.14 |
---|---|
Node.js) 백준 2630번 : 색종이 만들기 (0) | 2021.09.14 |
Node.js)백준 1021번 : 회전하는 큐 ★ (0) | 2021.09.13 |
Node.js) 백준 10866번 : 덱 (0) | 2021.09.13 |
Node.js) 백준 1966번 : 프린터 큐 (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적프로그래밍
- 개발자면접
- MySQL
- 다이나밍프로그래밍
- 면접비
- 면접질문
- 서버점검
- 투포인터
- 롱베케이션
- 로드나인
- 그래프
- 서버개발
- 투포인터 연습
- 다이나믹프로그래밍
- 은둔청년체험
- BFS
- 최소공통조상
- create databases;
- DB 생성
- MOD
- node.js
- create db
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함