치춘짱베리굿나이스

[백준] 2178 본문

미로 탐색

문제

N×M크기의 배열로 표현되는 미로가 있다.

미로에서 1은 이동할 수 있는 칸을 나타내고, 0은 이동할 수 없는 칸을 나타낸다. 이러한 미로가 주어졌을 때, (1, 1)에서 출발하여 (N, M)의 위치로 이동할 때 지나야 하는 최소의 칸 수를 구하는 프로그램을 작성하시오. 한 칸에서 다른 칸으로 이동할 때, 서로 인접한 칸으로만 이동할 수 있다.

위의 예에서는 15칸을 지나야 (N, M)의 위치로 이동할 수 있다. 칸을 셀 때에는 시작 위치와 도착 위치도 포함한다.

입력

첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다.

출력

첫째 줄에 지나야 하는 최소의 칸 수를 출력한다. 항상 도착위치로 이동할 수 있는 경우만 입력으로 주어진다.

풀이

const { notDeepEqual } = require("assert");

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

class Queue {
  constructor() {
    this.head = new Node(-1);
    this.tail = new Node(-1);
    this.head.next = this.tail;
    this.tail.prev = this.head;
    this.size = 0;
  }
  enQueue(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++;
  }
  deQueue() {
    if (this.ifEmpty()) return -1;
    let tmp = this.head.next;
    this.head.next = tmp.next;
    tmp.next.prev = this.head;
    this.size--;
    return tmp.data;
  }
  ifEmpty() {
    return this.size ? false : true;
  }
}

const maze = () => {
  let input = require("fs")
    .readFileSync("/dev/stdin")
    .toString()
    .trim()
    .split("\n");
  const col = parseInt(input[0].split(" ")[0]);
  const row = parseInt(input[0].split(" ")[1]);
  input.shift();
  input = input.map((n) => n.split("").map(Number));
  const dir = [
    [1, 0, -1, 0],
    [0, 1, 0, -1],
  ];
  let length;
  let queue = new Queue();
  input[0][0] = 2;
  queue.enQueue([0, 0, 0]);
  while (!queue.ifEmpty()) {
    let cur = queue.deQueue();
    if (cur[0] === col - 1 && cur[1] === row - 1) {
      length = cur[2] + 1;
      break;
    }
    for (let i = 0; i < 4; i++) {
      let coord = [cur[0] + dir[0][i], cur[1] + dir[1][i]];
      if (coord[0] < 0 || coord[0] >= col || coord[1] < 0 || coord[1] >= row)
        continue;
      if (!(input[coord[0]][coord[1]] === 1)) continue;
      input[coord[0]][coord[1]] = 2;
      queue.enQueue([coord[0], coord[1], cur[2] + 1]);
    }
  }
  console.log(length);
};

maze();

반성회

큐에 정보를 하나 더 넣어야 하는 문제 (출발점부터 지금까지의 거리)

최소 거리를 찾아야 하기 때문에 각 좌표별로 시작점부터의 거리를 큐에 같이 저장해준다

(각 좌표마다 상하좌우 좌표로 넘어갈때 이전 좌표까지의 거리 + 1 해서 저장하면 되므로)

마지막에 도착하고자 하는 좌표를 만나면 break하고, 그때까지 저장된 시작점부터의 거리에 1을 더하여 (마지막 좌표까지 포함해야 하므로) 출력한다

시작점이 1, 1이고 끝점이 배열 인덱스의 최대값 + 1이라서 끝점 도달여부 판정 조건문에서 좌표에 1씩 빼줬다

시작좌표에 저장된 거리가 (시작좌표 포함이니까) 1부터 시작했어야 하는데 내가 0부터 시작했어서 ㅡ,,ㅡ;; 따로 더해줌

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

[백준] 4179  (0) 2022.02.15
[백준] 1926  (0) 2022.02.15
[백준] 7576  (0) 2022.02.15
[백준] 2501  (0) 2022.02.14
[백준] 15641 [번외] [자바스크립트아님]  (0) 2022.02.14
Comments