|
| 1 | +import * as fs from "fs"; |
| 2 | + |
| 3 | +/** |
| 4 | + * If true prints the map with the shortest route from start to finish marked. |
| 5 | + */ |
| 6 | +const PRINT_ROUTE = true; |
| 7 | + |
| 8 | +let endPoint: MapPoint | undefined; |
| 9 | +class MapPoint { |
| 10 | + public isStart = false; |
| 11 | + public height: number; |
| 12 | + public visited = false; |
| 13 | + public distanceFromDestination = 0; |
| 14 | + // Variables needed only for printing the map. |
| 15 | + public parent?: MapPoint; |
| 16 | + public onShortestRoute = false; |
| 17 | + |
| 18 | + constructor(public x: number, public y: number, char: string) { |
| 19 | + if (char === "S") { |
| 20 | + this.isStart = true; |
| 21 | + char = "a"; |
| 22 | + } else if (char === "E") { |
| 23 | + // Starting from the end. |
| 24 | + this.visited = true; |
| 25 | + // eslint-disable-next-line @typescript-eslint/no-this-alias |
| 26 | + endPoint = this; |
| 27 | + char = "z"; |
| 28 | + } |
| 29 | + this.height = char.charCodeAt(0); |
| 30 | + } |
| 31 | + |
| 32 | + /** |
| 33 | + * Checks if neighbor is achievable from this map point and sets its parameters. |
| 34 | + * @param neighbor mapPoint to which we want to travel from this |
| 35 | + * @param queue - neighbor is added to the queue if we can travel to him |
| 36 | + * @returns true if found destination, false otherwise. |
| 37 | + */ |
| 38 | + public processNeighbor(neighbor: MapPoint, queue: MapPoint[]): boolean { |
| 39 | + if (neighbor && !neighbor.visited && this.height - neighbor.height <= 1) { |
| 40 | + if (neighbor.isStart) { |
| 41 | + // Parent is required only for the route printing. |
| 42 | + let parent = this.parent; |
| 43 | + while (parent) { |
| 44 | + parent.onShortestRoute = true; |
| 45 | + parent = parent.parent; |
| 46 | + } |
| 47 | + return true; |
| 48 | + } |
| 49 | + neighbor.visited = true; |
| 50 | + neighbor.distanceFromDestination = this.distanceFromDestination + 1; |
| 51 | + queue.push(neighbor); |
| 52 | + neighbor.parent = this; |
| 53 | + } |
| 54 | + return false; |
| 55 | + } |
| 56 | +} |
| 57 | + |
| 58 | +const data = fs.readFileSync("./input.txt", "utf-8"); |
| 59 | +const heightMap = data |
| 60 | + .split(/\r?\n/) |
| 61 | + .map((row, x) => |
| 62 | + row.split("").map((height, y) => new MapPoint(x, y, height)), |
| 63 | + ); |
| 64 | + |
| 65 | +/** |
| 66 | + * Solution is the BFS from the hill top. |
| 67 | + */ |
| 68 | +let shortestPathB = -1; |
| 69 | +function shortestPath() { |
| 70 | + if (endPoint === undefined) { |
| 71 | + throw new Error("There is no start point on the map!"); |
| 72 | + } |
| 73 | + const queue = [endPoint]; |
| 74 | + for (const point of queue) { |
| 75 | + if (shortestPathB < 0 && point.height === "a".charCodeAt(0)) |
| 76 | + shortestPathB = point.distanceFromDestination; |
| 77 | + if ( |
| 78 | + point.processNeighbor(heightMap[point.x]?.[point.y + 1], queue) || |
| 79 | + point.processNeighbor(heightMap[point.x]?.[point.y - 1], queue) || |
| 80 | + point.processNeighbor(heightMap[point.x + 1]?.[point.y], queue) || |
| 81 | + point.processNeighbor(heightMap[point.x - 1]?.[point.y], queue) |
| 82 | + ) |
| 83 | + return point.distanceFromDestination + 1; |
| 84 | + } |
| 85 | +} |
| 86 | + |
| 87 | +const shortestPathA = shortestPath(); |
| 88 | +// Is the starting position is also a first point with elevation "a" from the top, shortestPathB won't be set. |
| 89 | +if (shortestPathA && shortestPathA < shortestPathB) |
| 90 | + shortestPathB = shortestPathA; |
| 91 | + |
| 92 | +if (PRINT_ROUTE) { |
| 93 | + // Printing the map with the shortest path marked with red. |
| 94 | + let map = "\n"; |
| 95 | + for (const row of heightMap) { |
| 96 | + for (const point of row) { |
| 97 | + if (point.onShortestRoute) |
| 98 | + map += `\x1b[31m${String.fromCharCode(point.height)}\x1b[0m`; |
| 99 | + else map += String.fromCharCode(point.height); |
| 100 | + } |
| 101 | + map += "\n"; |
| 102 | + } |
| 103 | + console.log(map); |
| 104 | +} |
| 105 | + |
| 106 | +console.log(`Part 1: ${shortestPathA}`); |
| 107 | +console.log(`Part 2: ${shortestPathB}`); |
0 commit comments