티스토리 뷰

https://www.acmicpc.net/problem/14497

 

14497번: 주난의 난(難)

주난이는 크게 화가 났다. 책상 서랍 안에 몰래 먹으려고 숨겨둔 초코바가 사라졌기 때문이다. 주난이는 미쳐 날뛰기 시작했다. 사실, 진짜로 뛰기 시작했다. ‘쿵... 쿵...’ 주난이는 점프의 파

www.acmicpc.net

 

 

class Node {
  constructor(item) {
    this.item = item;
    this.next = null;
  }
}

class Queue {
  constructor() {
    this.head = null;
    this.tail = null;
    this.length = 0;
  }

  push(item) {
    const node = new Node(item)
    if (this.head == null) {
      this.head = node;
    } else {
      this.tail.next = node;
    }

    this.tail = node;
    this.length += 1;
  }

  pop() {
    const popItem = this.head;
    this.head = this.head.next;
    this.length -= 1;
    return popItem.item;
  }
}
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const [N, M] = input.shift().split(' ').map(Number);
const [x1, y1, x2, y2] = input.shift().split(' ').map(Number);
let board = input.map(v => v.trim().split(''));




function solve() {

  let cnt = 1;
  let q = new Queue();
  let visited = Array.from(Array(N), () => Array(M).fill(false));
  const dx = [0, 0, -1, 1]
  const dy = [1, -1, 0, 0]


  q.push([x1 - 1, y1 - 1]);
  visited[x1 - 1][y1 - 1] = true;

  while (q.length > 0) {
    const friends = [];

    while (q.length > 0) {
      let [x, y] = q.pop();
      for (let j = 0; j < 4; j++) {
        const nx = x + dx[j]
        const ny = y + dy[j]
        if (nx >= 0 && ny >= 0 && nx < N && ny < M && !visited[nx][ny]) {
          if (board[nx][ny] == '1') {
            visited[nx][ny] = true;
            friends.push([nx, ny])
          } else if (board[nx][ny] == '0') {
            visited[nx][ny] = true;
            q.push([nx, ny])
          } else {
            return cnt;
          }
        }
      }
    }
    friends.forEach(v => {
      q.push([v[0], v[1]]);
    })
    cnt++;
  }
}

const x = solve();
console.log(x)
728x90
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함