-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart2.ts
53 lines (41 loc) · 1.38 KB
/
part2.ts
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import * as fs from 'fs';
import { getNeighborPositions } from '../../utils';
const input = fs.readFileSync('input', 'utf8').split('\n');
const SIZE = 71;
let result = 1025;
while (true) {
const map: string[][] = Array.from({ length: SIZE }, () => Array(SIZE).fill('.'));
input.slice(0, result).forEach((line) => {
const [x, y] = line.split(',').map(Number);
map[y][x] = '#';
});
const queue = [{ x: 0, y: 0, visited: new Set(['0,0']) }];
const visited = new Map();
visited.set('0,0', 1);
let steps = Infinity;
while (queue.length > 0) {
const current = queue.shift();
if (current.x === SIZE - 1 && current.y === SIZE - 1) {
steps = Math.min(current.visited.size - 1, steps);
continue;
}
const neighborPoints = getNeighborPositions(map, current).filter(
(point) => map[point.y]?.[point.x] !== '#' && !current.visited.has(`${point.x},${point.y}`),
);
let searches = neighborPoints.map((neighbor) => ({
...neighbor,
visited: new Set([...current.visited, `${neighbor.x},${neighbor.y}`]),
}));
searches = searches.filter((search) => {
const key = `${search.x},${search.y}`;
return !visited.has(key) || visited.get(key) > search.visited.size;
});
queue.push(...searches);
searches.forEach((search) => visited.set(`${search.x},${search.y}`, search.visited.size));
}
if (steps === Infinity) {
break;
}
result++;
}
console.log(input[result - 1]);