2021-12-13 16:03:09 +00:00
|
|
|
import fs from "fs-extra";
|
|
|
|
import fp from "lodash/fp.js";
|
|
|
|
import _ from "lodash";
|
|
|
|
|
2021-12-13 16:03:28 +00:00
|
|
|
export const processInput = (input) =>
|
|
|
|
fs.readFile(input, "utf8").then((content) => {
|
|
|
|
let [coords, instructions] = content.split("\n\n");
|
2021-12-13 16:03:09 +00:00
|
|
|
|
2021-12-13 16:03:28 +00:00
|
|
|
let grid = [];
|
2021-12-13 16:03:09 +00:00
|
|
|
|
2021-12-13 16:03:28 +00:00
|
|
|
for (const [y, x] of coords
|
|
|
|
.split("\n")
|
|
|
|
.map((line) => line.split(",").map((x) => parseInt(x)))) {
|
|
|
|
if (!grid[x]) grid[x] = [];
|
|
|
|
grid[x][y] = true;
|
2021-12-13 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 16:04:57 +00:00
|
|
|
grid = [...grid].map((x) => (x ? [...x] : []));
|
2021-12-13 16:03:28 +00:00
|
|
|
|
|
|
|
instructions = instructions
|
|
|
|
.split("\n")
|
|
|
|
.filter((x) => x)
|
|
|
|
.map((line) => line.match(/([xy])=(\d+)/))
|
|
|
|
.map(([_, direction, level]) => [direction, parseInt(level)]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
grid,
|
|
|
|
instructions,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
export function foldGrid(grid, direction, level) {
|
|
|
|
if (direction === "x") {
|
|
|
|
for (const row of grid) {
|
|
|
|
if (!row) continue;
|
|
|
|
const folded = row.splice(level);
|
|
|
|
folded.forEach((v, i) => {
|
|
|
|
if (i === 0) return;
|
|
|
|
if (!v) return;
|
|
|
|
row[level - i] = v;
|
|
|
|
});
|
2021-12-13 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return grid;
|
2021-12-13 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const folded = grid.splice(level);
|
|
|
|
folded.forEach((v, i) => {
|
|
|
|
if (i === 0) return;
|
|
|
|
if (!v) return;
|
|
|
|
grid[level - i] = _.range(
|
|
|
|
_.max([grid[level - i].length, folded[i].length])
|
|
|
|
).map((j) => grid[level - i][j] || folded[i][j]);
|
|
|
|
});
|
|
|
|
|
|
|
|
return grid;
|
2021-12-13 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function printGrid(grid) {
|
2021-12-13 16:03:28 +00:00
|
|
|
return grid
|
|
|
|
.map((line) => (line || []).map((x) => (x ? "#" : ".")).join(""))
|
|
|
|
.join("\n");
|
2021-12-13 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 16:03:28 +00:00
|
|
|
export function solution({ grid, instructions }) {
|
|
|
|
foldGrid(grid, ...instructions.shift());
|
2021-12-13 16:03:09 +00:00
|
|
|
|
2021-12-13 16:03:28 +00:00
|
|
|
return _.sum(grid.flat());
|
2021-12-13 16:03:09 +00:00
|
|
|
}
|