티스토리 뷰
https://www.acmicpc.net/problem/7562
const fs = require('fs');
const [n, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
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;
this.head.next = null;
}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;
}
size(){
return this.length;
}
empty(){
if(this.length==0){
return 1;
}else{
return 0;
}
}
front(){
if(this.empty()==1) return -1;
return this.head.item;
}
back(){
if(this.empty()==1) return -1;
return this.tail.item;
}
}
function check(r,c){
return !isVisited[r][c]
}
const N = +n;
const knight = arr.map(v=>v.split(' ').map(w=>+w));
let answer = [];
for(let i = 0; i<N; i++){
const square = knight.shift()[0];
const start = knight.shift();
const isVisited = Array.from(Array(square), () => Array(square).fill(false))
const end = knight.shift();
function check(r,c){
return !isVisited[r][c];
}
let q = new Queue();
q.push([start[0],start[1],0]);
isVisited[start[0],start[1]] = true;
while(true){
const [y,x,c] = q.pop();
if(y==end[0] && x==end[1]){
answer.push(c)
break;
}else{
if(y+2<square && x+1<square &&check(y+2,x+1)){
isVisited[y+2][x+1] = true;
q.push([y+2,x+1,c+1])
}
if(y+2<square && x-1>-1 && check(y+2,x-1)){
isVisited[y+2][x-1] = true;
q.push([y+2,x-1,c+1])
}
if(y-2>-1 && x-1>-1 && check(y-2,x-1)){
isVisited[y-2][x-1] = true;
q.push([y-2,x-1,c+1])
}
if(y-2>-1 && x+1<square&& check(y-2,x+1)){
isVisited[y-2][x+1] = true;
q.push([y-2,x+1,c+1])
}
if(y+1<square && x+2<square&& check(y+1,x+2)){
isVisited[y+1][x+2] = true;
q.push([y+1,x+2,c+1])
}
if(y-1>-1 && x+2<square && check(y-1,x+2)){
isVisited[y-1][x+2] = true;
q.push([y-1,x+2,c+1])
}
if(y+1<square && x-2>-1&& check(y+1,x-2)){
isVisited[y+1][x-2] = true;
q.push([y+1,x-2,c+1])
}
if(y-1>-1 && x-2>-1 && check(y-1,x-2)){
isVisited[y-1][x-2] = true;
q.push([y-1,x-2,c+1])
}
}
}
}
console.log(answer.join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2206번 : 벽 부수고 이동하기. (1) | 2021.09.17 |
---|---|
Node.js) 백준 1707 : 이분 그래프 (시간초과 해결방법) (0) | 2021.09.17 |
Node.js) 백준 1697번 : 숨바꼭질 (0) | 2021.09.17 |
Node.js) 백준 7569번 : 토마토 (0) | 2021.09.16 |
Node.js) 백준 2178번 : 미로 탐색 (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버점검
- 투포인터 연습
- 다이나밍프로그래밍
- 그래프
- MySQL
- 면접질문
- node.js
- 개발자면접
- 면접비
- create db
- 다이나믹프로그래밍
- 최소공통조상
- 로드나인
- BFS
- MOD
- 투포인터
- create databases;
- 동적프로그래밍
- 은둔청년체험
- 롱베케이션
- 서버개발
- 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 |
글 보관함