티스토리 뷰
https://www.acmicpc.net/problem/14497
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
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 9934번: 완전 이진 트리 (0) | 2022.03.31 |
---|---|
Node.js) 백준 3197번: 백조의 호수 (0) | 2022.03.31 |
Node.js) 백준 17071: 숨바꼭질 5 (0) | 2022.03.24 |
Node.js) 백준 14620번: 꽃길 (0) | 2022.03.22 |
Node.js) 백준 12851번: 숨바꼭질 2 (0) | 2022.03.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 은둔청년체험
- 개발자면접
- 동적프로그래밍
- DB 생성
- 투포인터 연습
- 최소공통조상
- 면접질문
- 서버개발
- 그래프
- 투포인터
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- 면접비
- 롱베케이션
- 서버점검
- MySQL
- create db
- 로드나인
- node.js
- BFS
- create databases;
- MOD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함