adventofcode/2021/08/part2.mjs

98 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-12-08 17:45:55 +00:00
import fs from "fs-extra";
import fp from "lodash/fp.js";
import _ from "lodash";
2021-12-08 17:50:53 +00:00
import * as p1 from "./part1.mjs";
2021-12-08 17:45:55 +00:00
function decodedDigits(mapping) {
2021-12-08 17:50:53 +00:00
const s = fp.invert(mapping);
let solution = fp.invert(p1.digits);
solution = fp.mapKeys(
(k) =>
k
.split("")
.map((l) => s[l])
.join(""),
solution
);
solution = fp.mapKeys((k) => {
k = k.split("").sort().join("");
return k;
}, solution);
return solution;
2021-12-08 17:45:55 +00:00
}
2021-12-08 17:50:53 +00:00
function guess(unknowns, guessed = {}, inputs) {
const [next] = Object.keys(unknowns);
if (!next) return guessed;
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
if (unknowns[next].size === 0) return;
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
for (const p of unknowns[next].values()) {
let newUnknowns = fp.omit(next, unknowns);
newUnknowns = fp.mapValues((s) => {
const x = new Set(s.values());
x.delete(p);
return x;
}, newUnknowns);
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
if (Object.values(newUnknowns).some((s) => s.size === 0)) continue;
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
const r = guess(newUnknowns, { ...guessed, [next]: p }, inputs);
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
if (r) {
const solution = decodedDigits(r);
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
if (inputs.every((i) => solution.hasOwnProperty(i.join("")))) {
2021-12-08 17:45:55 +00:00
return r;
}
}
}
}
export function findMapping(input) {
2021-12-08 17:50:53 +00:00
const values = "abcdefg".split("");
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
const possibility = Object.fromEntries(
values.map((v) => [v, new Set(values)])
);
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
for (const seq of input) {
const p = Object.values(p1.digits)
.filter((d) => d.length === seq.length)
.join("")
.split("");
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
for (const l of seq) {
possibility[l] = new Set(p.filter((x) => possibility[l].has(x)));
2021-12-08 17:45:55 +00:00
}
}
2021-12-08 17:50:53 +00:00
const one = input.find((i) => i.length === 2);
const seven = input.find((i) => i.length === 3);
const [a] = seven.filter((x) => !one.includes(x));
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
for (const l of Object.values(possibility)) {
l.delete("a");
2021-12-08 17:45:55 +00:00
}
2021-12-08 17:50:53 +00:00
possibility[a] = new Set(["a"]);
2021-12-08 17:45:55 +00:00
2021-12-08 17:50:53 +00:00
return guess(possibility, {}, input);
2021-12-08 17:45:55 +00:00
}
2021-12-08 17:50:53 +00:00
export function decodedOutput({ input, output }) {
const mapping = findMapping([...input, ...output]);
2021-12-08 17:45:55 +00:00
const digits = decodedDigits(mapping);
2021-12-08 17:50:53 +00:00
return parseInt(output.map((e) => digits[e.join("")]).join(""));
2021-12-08 17:45:55 +00:00
}
export function solution(input) {
2021-12-08 17:50:53 +00:00
return _.sum(input.map(decodedOutput));
2021-12-08 17:45:55 +00:00
}