✨ 정답 ✨
function solution(rectangle, characterX, characterY, itemX, itemY) {
characterX*=2;
characterY*=2;
itemX*=2;
itemY*=2;
let doubleRectangle=rectangle.map(el=>el.map(el2=>el2*2));
const dx=[-1,0, 1, 0 ];
const dy=[0, -1, 0, 1];
let start=[characterX, characterY,0]
let queue=[start];
let area=Array.from({length:103}, ()=>Array(103).fill(0));
doubleRectangle.forEach(([x1, y1, x2, y2])=>{
for (let i=x1; i<=x2;i++){
for (let j=y1; j<=y2;j++){
if (i===x1 || i===x2 || j===y1 || j===y2){
if (area[i][j]===0){
area[i][j]=1;
}
}else{
area[i][j]=2;
}
}
}
});
area[characterX][characterY]=0;
while(queue.length){
let [currentX, currentY, count]=queue.shift();
if (currentX===itemX && currentY===itemY){
return count/2;
}else{
for (let i=0;i<4;i++){
let nextX=currentX+dx[i];
let nextY=currentY+dy[i];
if (area[nextX][nextY]===1){
queue.push([nextX, nextY, count+1]);
area[nextX][nextY]=0;
}
}
}
}
return 0;
}
🧵 참고한 정답지 🧵
💡💡 기억해야 할 점 💡💡