advent-of-code-2022/day12/index.js

103 lines
3.8 KiB
JavaScript
Raw Permalink Normal View History

2022-12-12 23:41:09 +00:00
import { readFileSync } from "fs";
const input = readFileSync("heightmap.txt", "utf-8");
function BFS(map, visited = [], toCheck = [], endingPos, dimensions) {
const whereFrom = {};
whereFrom[visited[0]] = null;
while(toCheck.length > 0) {
const positionString = toCheck.shift();
const positionObj = { x: parseInt(positionString.split(":")[0]), y: parseInt(positionString.split(":")[1])};
if(positionObj.x - 1 >= 0 && (
(map[positionObj.y][positionObj.x - 1].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) === 1 ||
(map[positionObj.y][positionObj.x - 1].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) < 1
)) {
const str = `${positionObj.x - 1}:${positionObj.y}`;
if(!visited.includes(str)) {
toCheck.push(str);
visited.push(str);
whereFrom[str] = positionString;
}
}
if(positionObj.x + 1 < dimensions.width && (
(map[positionObj.y][positionObj.x + 1].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) === 1 ||
(map[positionObj.y][positionObj.x + 1].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) < 1
)) {
const str = `${positionObj.x + 1}:${positionObj.y}`;
if(!visited.includes(str)) {
toCheck.push(str);
visited.push(str);
whereFrom[str] = positionString;
}
}
if(positionObj.y - 1 >= 0 && (
(map[positionObj.y - 1][positionObj.x].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) === 1 ||
(map[positionObj.y - 1][positionObj.x].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) < 1
)) {
const str = `${positionObj.x}:${positionObj.y - 1}`;
if(!visited.includes(str)) {
toCheck.push(str);
visited.push(str);
whereFrom[str] = positionString;
}
}
if(positionObj.y + 1 < dimensions.height && (
(map[positionObj.y + 1][positionObj.x].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) === 1 ||
(map[positionObj.y + 1][positionObj.x].charCodeAt(0) - map[positionObj.y][positionObj.x].charCodeAt(0)) < 1
)) {
const str = `${positionObj.x}:${positionObj.y + 1}`;
if(!visited.includes(str)) {
toCheck.push(str);
visited.push(str);
whereFrom[str] = positionString;
}
}
if(positionObj.x === endingPos.x && positionObj.y === endingPos.y) {
let count = 0;
let currentPoint = positionString;
while(1) {
currentPoint = whereFrom[currentPoint]
2022-12-12 23:46:22 +00:00
if(currentPoint === null) return count;
2022-12-12 23:41:09 +00:00
count++;
}
}
}
}
let index = 0;
const heightMap = [];
2022-12-12 23:46:22 +00:00
const startingPoints = [];
2022-12-12 23:41:09 +00:00
const end = { x: 0, y: 0 };
input.split('\n').forEach(line => {
heightMap[index] = [...line.split("")];
2022-12-12 23:46:22 +00:00
if(line.includes("a")) startingPoints.push({ x: heightMap[index].indexOf("a"), y: index });
2022-12-12 23:41:09 +00:00
if(line.includes("S")) {
const startingIndex = heightMap[index].indexOf("S")
heightMap[index][startingIndex] = "a";
2022-12-12 23:46:22 +00:00
startingPoints.push({ x: startingIndex, y: index });
2022-12-12 23:41:09 +00:00
}
if(line.includes("E")) {
const endingIndex = heightMap[index].indexOf("E")
heightMap[index][endingIndex] = "z";
end.x = endingIndex;
end.y = index;
}
index++;
});
2022-12-12 23:46:22 +00:00
const results = []
startingPoints.forEach(start => {
results.push(BFS(heightMap, [`${start.x}:${start.y}`], [`${start.x}:${start.y}`], end, { height: index, width: heightMap[0].length }))
});
console.log(results.sort((a, b) => a - b)[0])