faster part 1

main
Yanick Champoux 2022-12-18 11:57:22 -05:00
parent 562e2f4737
commit 69f0bf3f1c
1 changed files with 47 additions and 8 deletions

View File

@ -1,8 +1,10 @@
import * as R from "remeda";
import { passthru } from "../08/part1.js";
import { readFile } from "../05/part1.js";
import V from '@yanick/vyktor';
import { createLogger } from "vite";
const readInput = (...args) =>
R.pipe(
@ -18,7 +20,38 @@ const readInput = (...args) =>
export const puzzleInput = readInput(import.meta.url, "input");
export const sample = readInput(import.meta.url, "sample");
export const unbeaconAtLine = targetLine => R.createPipe(
/** @returns [number,number][] */
const mergeRanges = ( ranges ) =>
ranges.reduce( (accum,range) => {
if( accum.length === 0 ) return [ range ];
if( R.last( accum )[1] < range[0] ) {
accum.push(range);
}
else {
R.last(accum)[1] = Math.max(
R.last(accum)[1], range[1]
)
}
return accum;
}, [] );
const spy = passthru( x => console.log(x) );
const entriesInRange = (targetLine,entries) => {
entries = R.uniqBy(entries.map(([_,beacon])=>beacon).filter( beacon => beacon?.y === targetLine ), (x) => x.toString());
console.log(entries);
return range => {
return entries.filter(
entry => (entry.x >= range[0]) && (entry.x <= range[1])
).length
}
};
export const unbeaconAtLine = targetLine => entries => R.pipe(
entries,
R.map( ([x,y]) => [ x, x.manhattanDistance(y) ] ),
R.filter(
e => (
@ -30,15 +63,21 @@ e => (
e => {
const l = e[1] - Math.abs(targetLine - e[0].y);
return R.range(
return [
e[0].x - l,
e[0].x + l,
) }
e[0].x + l ]
}
),
R.flatten,
R.uniq,
x => x.length
spy,
(ranges) =>
ranges.sort( (a,b) => {
return (a[0] - b[0]) || (a[1]-b[1]);
} )
,
spy,
mergeRanges,
spy,
R.sumBy( range => range[1] - range[0] + 1 - entriesInRange(targetLine,entries)(range) )
);
export default unbeaconAtLine(2000000);