티스토리 뷰
https://www.acmicpc.net/problem/13459
// https://www.acmicpc.net/problem/13459
// 구슬 탈출
class Item {
next = null;
constructor(value) {
this.value = value;
}
}
class Queue {
head = null;
tail = null;
size = 0;
constructor() {}
push(value) {
const node = new Item(value);
if (this.head == null) {
this.head = node;
} else if (this.tail) {
this.tail.next = node;
}
this.tail = node;
this.size += 1;
}
pop() {
if (this.head) {
const popItem = this.head;
this.head = this.head.next;
this.size -= 1;
return popItem.value;
} else {
return null;
}
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const [R, C] = input.shift().split(' ').map(Number);
const board = input.map((v) => v.split(''));
let redX;
let redY;
let blueX;
let blueY;
let outX;
let outY;
for (let i = 0; i < R; i++) {
for (let j = 0; j < C; j++) {
if (board[i][j] == 'R') {
redX = i;
redY = j;
board[i][j] = '.';
}
if (board[i][j] == 'B') {
blueX = i;
blueY = j;
board[i][j] = '.';
}
if (board[i][j] == 'O') {
outX = i;
outY = j;
}
}
}
const dx = [0, 0, 1, -1];
const dy = [1, -1, 0, 0];
const q = new Queue();
let answer = 0;
q.push([redX, redY, blueX, blueY, 0]);
while (q.size > 0 && answer == 0) {
const [orx, ory, obx, oby, c] = q.pop();
for (let i = 0; i < 4; i++) {
let rx = orx;
let ry = ory;
let bx = obx;
let by = oby;
let redEnd = false;
let blueEnd = false;
while (!(redEnd && blueEnd)) {
let nrx = rx;
let nry = ry;
let nbx = bx;
let nby = by;
if (!redEnd) {
nrx += dx[i];
nry += dy[i];
}
if (!blueEnd) {
nbx += dx[i];
nby += dy[i];
}
if (
board[nrx][nry] == '.' &&
!(board[bx + dx[i]][by + dy[i]] == '#' && nrx == bx && nry == by)
) {
// 새로운 빨강공이 갈수 있는 위치면
// 벽이 아니고
// 해당 위치에 파란공이 없거나
// 파란공이 있어도 파란공 역시 이동할 수 있는 경우
rx = nrx;
ry = nry;
} else if (board[nrx][nry] == 'O') {
rx = nrx;
ry = nry;
redEnd = true;
} else {
redEnd = true;
}
if (
board[nbx][nby] == '.' &&
!(board[rx + dx[i]][ry + dy[i]] == '#' && nbx == rx && nby == ry)
) {
bx = nbx;
by = nby;
} else if (board[nbx][nby] == 'O') {
bx = nbx;
by = nby;
blueEnd = true;
} else {
blueEnd = true;
}
}
if (board[bx][by] == 'O' || (rx == orx && ry == ory && bx == obx && by == oby)) {
continue;
} else if (board[rx][ry] == 'O' && board[bx][by] != 'O') {
answer = 1;
break;
} else {
if (c < 9) q.push([rx, ry, bx, by, c + 1]);
}
}
}
console.log(answer);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
TS) 백준 1517번: 버블 소트 (0) | 2024.03.04 |
---|---|
Node.js) 백준 1517번: 버블 소트 (0) | 2024.03.04 |
TS) 백준 13459번: 구슬 탈출 (0) | 2024.03.04 |
Node.js) 백준 10090번: Counting Inversions (0) | 2024.03.04 |
TS) 백준 10090번: Counting Inversions (0) | 2024.03.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 투포인터 연습
- 은둔청년체험
- DB 생성
- 그래프
- node.js
- 다이나믹프로그래밍
- 개발자면접
- create databases;
- 서버점검
- 다이나밍프로그래밍
- 로드나인
- BFS
- MOD
- create db
- 면접질문
- 투포인터
- 롱베케이션
- MySQL
- 동적프로그래밍
- 면접비
- 최소공통조상
- 서버개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함