티스토리 뷰

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

 

2636번: 치즈

아래 <그림 1>과 같이 정사각형 칸들로 이루어진 사각형 모양의 판이 있고, 그 위에 얇은 치즈(회색으로 표시된 부분)가 놓여 있다. 판의 가장자리(<그림 1>에서 네모 칸에 X친 부분)에는 치즈가 놓

www.acmicpc.net

const fs = require('fs');
let [N, ...map] = fs.readFileSync("./dev/stdin").toString().trim().split("\n").map(v => v.split(' ').map(Number))
const [H, W] = N;
let MAX = Math.max(H, W)
const cnt = [];
let cheese = 0;
for (let i = 0; i < H; i++) {
  for (let j = 0; j < W; j++) {
    if (map[i][j] == 1) {
      cheese++;
    }
  }
}
cnt.push(cheese)

const dx = [1, -1, 0, 0];
const dy = [0, 0, 1, -1];
const out = [[0, 0]];

while (out.length > 0) {
  const [x, y] = out.shift();
  for (let i = 0; i < 4; i++) {
    const nx = x + dx[i];
    const ny = y + dy[i];
    if (nx >= 0 && ny >= 0 && nx < H && ny < W && map[nx][ny] == 0) {
      map[nx][ny] = MAX;
      out.push([nx, ny])
    }
  }
}

while (cheese > 0) {
  const melting = [];
  for (let i = 0; i < H; i++) {
    for (let j = 0; j < W; j++) {
      if (map[i][j] == MAX)
        for (let k = 0; k < 4; k++) {
          const nx = i + dx[k];
          const ny = j + dy[k];
          if (nx >= 0 && ny >= 0 && nx < H && ny < W && map[nx][ny] == 1) {
            melting.push([nx, ny])
          }
        }
    }
  }
  melting.forEach(v => {
    const [x, y] = v;
    if (map[x][y] == 1) {
      map[x][y] = MAX - 1;
      out.push([x, y])
      cheese--;
    }
  })

  MAX--;

  cnt.push(cheese)

  while (out.length > 0) {
    const [x, y] = out.shift();
    for (let i = 0; i < 4; i++) {
      const nx = x + dx[i];
      const ny = y + dy[i];
      if (nx >= 0 && ny >= 0 && nx < H && ny < W && map[nx][ny] == 0) {
        map[nx][ny] = MAX;
        out.push([nx, ny])
      }
    }
  }
}

const time = cnt.length - 1;
const last = cnt[time - 1];
console.log(time + '\n' + last)
728x90
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
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
글 보관함