문제
제한 사항
입출력 예
풀이
let input = require('fs').readFileSync('/dev/stdin').toString().trim().split('\n');
const solution = (input) => {
const [n, m] = input.shift().split(" ").map(Number);
const table = input.map((e) => e.split("").map(Number));
const visited = Array.from(Array(m), () => Array(n).fill(0));
const dx = [-1, 0, 1, 0];
const dy = [0, 1, 0, -1];
const queue = [];
visited[0][0] = 1;
queue.push([0, 0, 0]);
while (queue.length) {
const [x, y, cnt] = queue.shift();
if (x === m - 1 && y === n - 1) {
return cnt;
}
for (let i = 0; i < 4; i++) {
let nx = x + dx[i];
let ny = y + dy[i];
if (nx < 0 || ny < 0 || nx >= m || ny >= n) continue;
if (table[nx][ny] === 0 && !visited[nx][ny]) {
visited[nx][ny] = 1;
queue.unshift([nx, ny, cnt]);
}
if (table[nx][ny] === 1 && !visited[nx][ny]) {
visited[nx][ny] = 1;
queue.push([nx, ny, cnt + 1]);
}
}
}
};
console.log(solution(input));
- 벽을 안 부시는걸 먼저 처리해줘야 함으로 unshift를 사용해줬다.