티스토리 뷰
https://www.acmicpc.net/problem/2636
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
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1189번: 컴백홈 (0) | 2022.03.12 |
---|---|
Node.js) 백준 1068번: 트리 (0) | 2022.03.11 |
Node.js) 백준 14502번: 연구소 (1) | 2022.03.10 |
Node.js) 백준 2852번: NBA 농구 (0) | 2022.03.09 |
Node.js) 백준 3474번: 교수가 된 현우 (0) | 2022.03.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버점검
- 롱베케이션
- 다이나믹프로그래밍
- 투포인터
- MOD
- 면접비
- BFS
- DB 생성
- MySQL
- 은둔청년체험
- node.js
- 다이나밍프로그래밍
- 동적프로그래밍
- 그래프
- create databases;
- 최소공통조상
- 투포인터 연습
- 개발자면접
- 로드나인
- 면접질문
- create db
- 서버개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함