티스토리 뷰
https://www.acmicpc.net/problem/3197
백조가 있는 곳도 물이다.
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);
let lake = input.map(v => v.trim().split(''));
function solve() {
const dx = [0, 0, -1, 1];
const dy = [-1, 1, 0, 0];
let waterQ = new Queue();
const swan = [];
//find water, find swan
for (let i = 0; i < N; i++) {
for (let j = 0; j < M; j++) {
if (lake[i][j] == '.') {
waterQ.push([i, j]);
} else if (lake[i][j] == 'L') {
swan.push([i, j])
lake[i][j] = '.'
waterQ.push([i, j]);
}
}
}
let days = 0;
let visited = Array.from(Array(N), () => Array(M).fill(false));
const [sx, sy] = swan[0];
const [ex, ey] = swan[1];
let swanQ = new Queue();
const swanTemp = [];
swanQ.push([sx, sy]);
visited[sx][sy] = true;
while (true) {
// console.log(lake.map(v => v.join('')).join('\n'))
//can swans meet?
while (swanQ.length > 0) {
const [x, y] = swanQ.pop();
for (let i = 0; i < 4; i++) {
const nx = x + dx[i];
const ny = y + dy[i];
if (nx == ex && ny == ey) {
return days;
} else if (nx >= 0 && ny >= 0 && nx < N && ny < M && !visited[nx][ny]) {
if (lake[nx][ny] == '.') {
swanQ.push([nx, ny]);
} else {
swanTemp.push([nx, ny])
}
visited[nx][ny] = true;
}
}
}
while (swanTemp.length > 0) {
const [x, y] = swanTemp.shift();
swanQ.push([x, y]);
}
// If swans can't meet, melt the ice
const L = waterQ.length;
for (let l = 0; l < L; l++) {
const [x, y] = waterQ.pop();
for (let i = 0; i < 4; i++) {
const nx = x + dx[i];
const ny = y + dy[i];
if (nx >= 0 && ny >= 0 && nx < N && ny < M && lake[nx][ny] == 'X') {
waterQ.push([nx, ny]);
lake[nx][ny] = '.'
}
}
}
days++;
}
}
console.log(solve())
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 15684번: 사다리 조작 (0) | 2022.03.31 |
---|---|
Node.js) 백준 9934번: 완전 이진 트리 (0) | 2022.03.31 |
Node.js)백준 14497번: 주난의 난(難) (0) | 2022.03.30 |
Node.js) 백준 17071: 숨바꼭질 5 (0) | 2022.03.24 |
Node.js) 백준 14620번: 꽃길 (0) | 2022.03.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create databases;
- MOD
- DB 생성
- 투포인터
- 동적프로그래밍
- 투포인터 연습
- MySQL
- 서버점검
- create db
- 그래프
- 롱베케이션
- 은둔청년체험
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- 서버개발
- 면접질문
- 최소공통조상
- 로드나인
- 개발자면접
- 면접비
- node.js
- BFS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함