치춘짱베리굿나이스

[백준] 10866 본문

문제

정수를 저장하는 덱(Deque)를 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.

명령은 총 여덟 가지이다.

  • push_front X: 정수 X를 덱의 앞에 넣는다.
  • push_back X: 정수 X를 덱의 뒤에 넣는다.
  • pop_front: 덱의 가장 앞에 있는 수를 빼고, 그 수를 출력한다. 만약, 덱에 들어있는 정수가 없는 경우에는 -1을 출력한다.
  • pop_back: 덱의 가장 뒤에 있는 수를 빼고, 그 수를 출력한다. 만약, 덱에 들어있는 정수가 없는 경우에는 -1을 출력한다.
  • size: 덱에 들어있는 정수의 개수를 출력한다.
  • empty: 덱이 비어있으면 1을, 아니면 0을 출력한다.
  • front: 덱의 가장 앞에 있는 정수를 출력한다. 만약 덱에 들어있는 정수가 없는 경우에는 -1을 출력한다.
  • back: 덱의 가장 뒤에 있는 정수를 출력한다. 만약 덱에 들어있는 정수가 없는 경우에는 -1을 출력한다.

입력

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

출력

출력해야하는 명령이 주어질 때마다, 한 줄에 하나씩 출력한다.

풀이

class Node {
  constructor(data, next = null, prev = null) {
    this.data = data;
    this.next = next;
    this.prev = prev;
  }
}

class Deque {
  constructor() {
    this.head = new Node(-1);
    this.tail = new Node(-1);
    this.head.next = this.tail;
    this.tail.prev = this.head;
    this.size = 0;
  }
  pushFront(data) {
    let node = new Node(data);
    node.prev = this.head;
    node.next = this.head.next;
    this.head.next.prev = node;
    this.head.next = node;
    this.size++;
  }
  pushBack(data) {
    let node = new Node(data);
    node.prev = this.tail.prev;
    node.next = this.tail;
    this.tail.prev.next = node;
    this.tail.prev = node;
    this.size++;
  }
  popFront() {
    if (this.empty()) return -1;
    let tmp = this.head.next;
    this.head.next = tmp.next;
    tmp.next.prev = this.head;
    this.size--;
    return tmp.data;
  }
  popBack() {
    if (this.empty()) return -1;
    let tmp = this.tail.prev;
    this.tail.prev = tmp.prev;
    tmp.prev.next = this.tail;
    this.size--;
    return tmp.data;
  }
  returnSize() {
    return this.size;
  }
  empty() {
    return this.size ? 0 : 1;
  }
  returnFront() {
    if (this.empty()) return -1;
    return this.head.next.data;
  }
  returnBack() {
    if (this.empty()) return -1;
    return this.tail.prev.data;
  }
}

const deque = () => {
  let input = require("fs")
    .readFileSync("/dev/stdin")
    .toString()
    .trim()
    .split("\n");
  input.shift();
  let deq = new Deque();
  let ans = [];
  for (let str of input) {
    let tmp = str.split(" ");
    switch (tmp[0]) {
      case "push_back":
        deq.pushBack(parseInt(tmp[1]));
        break;
      case "push_front":
        deq.pushFront(parseInt(tmp[1]));
        break;
      case "pop_front":
        ans.push(deq.popFront());
        break;
      case "pop_back":
        ans.push(deq.popBack());
        break;
      case "size":
        ans.push(deq.returnSize());
        break;
      case "empty":
        ans.push(deq.empty());
        break;
      case "front":
        ans.push(deq.returnFront());
        break;
      case "back":
        ans.push(deq.returnBack());
        break;
      default:
        break;
    }
  }
  console.log(ans.join("\n"));
};

deque();

반성회

말그대로 덱을 구현하는 문제

클래스로 연결리스트를 구현해서 만들었다

자바스크립트는 포인터 다루기가 어려우니까 연결리스트나 덱 큐 만들때 클래스 쓰더라

스택은 이미 있는거 쓰고...

아마 덱 구현 안하고 그냥 풀면 시간제한 오버했을듯?

'Javascript + Typescript > 자바스크립트로 알고리즘풀기' 카테고리의 다른 글

[백준] 2164  (0) 2022.02.09
[백준] 9523  (0) 2022.02.09
[백준] 10845  (0) 2022.02.09
[백준] 4992  (0) 2022.02.09
[백준] 7585  (0) 2022.02.09
Comments