aboutsummaryrefslogtreecommitdiff
path: root/2021/13/solve.js
diff options
context:
space:
mode:
authorMarvin Borner2021-12-13 16:07:52 +0100
committerMarvin Borner2021-12-13 19:21:41 +0100
commited341f7f190cec49d0c3d6353f63234ce5b58bef (patch)
tree33b15183e0e76ff99a679d3ff4a68486f2f5128a /2021/13/solve.js
parenta46a5cf547127ade88ce9ced2cc459086f770d07 (diff)
ez
Diffstat (limited to '2021/13/solve.js')
-rw-r--r--2021/13/solve.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/2021/13/solve.js b/2021/13/solve.js
new file mode 100644
index 0000000..d8c2d3c
--- /dev/null
+++ b/2021/13/solve.js
@@ -0,0 +1,49 @@
+const { _, performance } = require("perf_hooks");
+const fs = require("fs");
+
+const [dot_data, fold_data] = fs.readFileSync("input", "utf8").split("\n\n");
+
+// Why doesn't JS have Tuples?!
+class Tupility extends Set {
+ add = (elem) =>
+ super.add(typeof elem === "object" ? JSON.stringify(elem) : elem);
+ iterable = () => [...this].map(JSON.parse);
+}
+
+function solve() {
+ let dots = new Tupility();
+ dot_data.split("\n").forEach((line) => {
+ const [x, y] = line.split(",").map(Number);
+ dots.add([x, y]);
+ });
+
+ let first = 0;
+ fold_data.split("\n").forEach((line) => {
+ let [dir, amount] = line.substr(11).split("=");
+ if (!dir) return;
+ amount = +amount;
+ const changed = new Tupility();
+ dots.iterable().forEach(([x, y]) =>
+ changed.add([
+ dir == "x" && x >= amount ? 2 * amount - x : x,
+ dir == "y" && y >= amount ? 2 * amount - y : y,
+ ])
+ );
+ dots = changed;
+ if (!first) first = dots.size;
+ });
+
+ // ANSI escape sequences
+ let out = process.stdout;
+ out.write("\u001b[2J");
+ dots.iterable().forEach(([x, y]) =>
+ out.write("\u001b[" + (y + 1) + ";" + x + "Hâ–ˆ")
+ );
+
+ console.log("\n\n" + first);
+}
+
+const tic = performance.now();
+solve();
+const toc = performance.now();
+console.log("TIME: " + ((toc - tic) / 1000).toFixed(6) + " seconds");