Monitoring Station


Fork me on GitHub
2019-12-10

Day 10: Monitoring Station

Description:
--- Day 10: Monitoring Station ---

You fly into the asteroid belt and reach the Ceres monitoring station. The Elves here have an emergency: they're having trouble tracking all of the asteroids and can't be sure they're safe.

The Elves would like to build a new monitoring station in a nearby area of space; they hand you a map of all of the asteroids in that region (your puzzle input).

The map indicates whether each position is empty (.) or contains an asteroid (#). The asteroids are much smaller than they appear on the map, and every asteroid is exactly in the center of its marked position. The asteroids can be described with X,Y coordinates where X is the distance from the left edge and Y is the distance from the top edge (so the top-left corner is 0,0 and the position immediately to its right is 1,0).

Your job is to figure out which asteroid would be the best place to build a new monitoring station. A monitoring station can detect any asteroid to which it has direct line of sight - that is, there cannot be another asteroid exactly between them. This line of sight can be at any angle, not just lines aligned to the grid or diagonally. The best location is the asteroid that can detect the largest number of other asteroids.

For example, consider the following map:

.#..#
.....
#####
....#
...##

The best location for a new monitoring station on this map is the highlighted asteroid at 3,4 because it can detect 8 asteroids, more than any other location. (The only asteroid it cannot detect is the one at 1,0; its view of this asteroid is blocked by the asteroid at 2,2.) All other asteroids are worse locations; they can detect 7 or fewer other asteroids. Here is the number of other asteroids a monitoring station on each asteroid could detect:

.7..7
.....
67775
....7
...87

Here is an asteroid (#) and some examples of the ways its line of sight might be blocked. If there were another asteroid at the location of a capital letter, the locations marked with the corresponding lowercase letter would be blocked and could not be detected:

#.........
...A......
...B..a...
.EDCG....a
..F.c.b...
.....c....
..efd.c.gb
.......c..
....f...c.
...e..d..c

Here are some larger examples:

Best is 5,8 with 33 other asteroids detected:

......#.#.
#..#.#....
..#######.
.#.#.###..
.#..#.....
..#....#.#
#..#....#.
.##.#..###
##...#..#.
.#....####

Best is 1,2 with 35 other asteroids detected:

#.#...#.#.
.###....#.
.#....#...
##.#.#.#.#
....#.#.#.
.##..###.#
..#...##..
..##....##
......#...
.####.###.

Best is 6,3 with 41 other asteroids detected:

.#..#..###
####.###.#
....###.#.
..###.##.#
##.##.#.#.
....###..#
..#.#..#.#
#..#.#.###
.##...##.#
.....#.#..

Best is 11,13 with 210 other asteroids detected:

.#..##.###...#######
##.############..##.
.#.######.########.#
.###.#######.####.#.
#####.##.#.##.###.##
..#####..#.#########
####################
#.####....###.#.#.##
##.#################
#####.##.###..####..
..######..##.#######
####.##.####...##..#
.#####..#.######.###
##...#.##########...
#.##########.#######
.####.#.###.###.#.##
....##.##.###..#####
.#.#.###########.###
#.#.#.#####.####.###
###.##.####.##.#..##

Find the best location for a new monitoring station. How many other asteroids can be detected from that location?

--- Part Two ---

Once you give them the coordinates, the Elves quickly deploy an Instant Monitoring Station to the location and discover the worst: there are simply too many asteroids.

The only solution is complete vaporization by giant laser.

Fortunately, in addition to an asteroid scanner, the new monitoring station also comes equipped with a giant rotating laser perfect for vaporizing asteroids. The laser starts by pointing up and always rotates clockwise, vaporizing any asteroid it hits.

If multiple asteroids are exactly in line with the station, the laser only has enough power to vaporize one of them before continuing its rotation. In other words, the same asteroids that can be detected can be vaporized, but if vaporizing one asteroid makes another one detectable, the newly-detected asteroid won't be vaporized until the laser has returned to the same position by rotating a full 360 degrees.

For example, consider the following map, where the asteroid with the new monitoring station (and laser) is marked X:

.#....#####...#..
##...##.#####..##
##...#...#.#####.
..#.....X...###..
..#.#.....#....##

The first nine asteroids to get vaporized, in order, would be:

.#....###24...#..
##...##.13#67..9#
##...#...5.8####.
..#.....X...###..
..#.#.....#....##

Note that some asteroids (the ones behind the asteroids marked 1, 5, and 7) won't have a chance to be vaporized until the next full rotation. The laser continues rotating; the next nine to be vaporized are:

.#....###.....#..
##...##...#.....#
##...#......1234.
..#.....X...5##..
..#.9.....8....76

The next nine to be vaporized are then:

.8....###.....#..
56...9#...#.....#
34...7...........
..2.....X....##..
..1..............

Finally, the laser completes its first full rotation (1 through 3), a second rotation (4 through 8), and vaporizes the last asteroid (9) partway through its third rotation:

......234.....6..
......1...5.....7
.................
........X....89..
.................

In the large example above (the one with the best monitoring station location at 11,13):

The 1st asteroid to be vaporized is at 11,12.
The 2nd asteroid to be vaporized is at 12,1.
The 3rd asteroid to be vaporized is at 12,2.
The 10th asteroid to be vaporized is at 12,8.
The 20th asteroid to be vaporized is at 16,0.
The 50th asteroid to be vaporized is at 16,9.
The 100th asteroid to be vaporized is at 10,16.
The 199th asteroid to be vaporized is at 9,6.
The 200th asteroid to be vaporized is at 8,2.
The 201st asteroid to be vaporized is at 10,9.
The 299th and final asteroid to be vaporized is at 11,1.

The Elves are placing bets on which will be the 200th asteroid to be vaporized. Win the bet by determining which asteroid that will be; what do you get if you multiply its X coordinate by 100 and then add its Y coordinate? (For example, 8,2 becomes 802.)

Input:
....#.....#.#...##..........#.......#......
.....#...####..##...#......#.........#.....
.#.#...#..........#.....#.##.......#...#..#
.#..#...........#..#..#.#.......####.....#.
##..#.................#...#..........##.##.
#..##.#...#.....##.#..#...#..#..#....#....#
##...#.............#.#..........#...#.....#
#.#..##.#.#..#.#...#.....#.#.............#.
...#..##....#........#.....................
##....###..#.#.......#...#..........#..#..#
....#.#....##...###......#......#...#......
.........#.#.....#..#........#..#..##..#...
....##...#..##...#.....##.#..#....#........
............#....######......##......#...#.
#...........##...#.#......#....#....#......
......#.....#.#....#...##.###.....#...#.#..
..#.....##..........#..........#...........
..#.#..#......#......#.....#...##.......##.
.#..#....##......#.............#...........
..##.#.....#.........#....###.........#..#.
...#....#...#.#.......#...#.#.....#........
...####........#...#....#....#........##..#
.#...........#.................#...#...#..#
#................#......#..#...........#..#
..#.#.......#...........#.#......#.........
....#............#.............#.####.#.#..
.....##....#..#...........###........#...#.
.#.....#...#.#...#..#..........#..#.#......
.#.##...#........#..#...##...#...#...#.#.#.
#.......#...#...###..#....#..#...#.........
.....#...##...#.###.#...##..........##.###.
..#.....#.##..#.....#..#.....#....#....#..#
.....#.....#..............####.#.........#.
..#..#.#..#.....#..........#..#....#....#..
#.....#.#......##.....#...#...#.......#.#..
..##.##...........#..........#.............
...#..##....#...##..##......#........#....#
.....#..........##.#.##..#....##..#........
.#...#...#......#..#.##.....#...#.....##...
...##.#....#...........####.#....#.#....#..
...#....#.#..#.........#.......#..#...##...
...##..............#......#................
........................#....##..#........#

Part 1:
namespace AdventOfCode2019_10_1
{
	const DAY     = 10;
	const PROBLEM = 1;

	export async function run()
	{
		let input = await AdventOfCode.getInput(DAY);
		if (input == null) return;
		input = input.trim();

		let data: { [_:number]:[number,number,boolean] } = {};

		const width  = input.split(new RegExp('\r?\n'))[0].length;
		const height = input.split(new RegExp('\r?\n')).length;
		
		let x=0;
		let y=0;
		for(let i=0; i<input.length;i++)
		{
			if (input[i]=="\r") continue;
			if (input[i]=="\n") { x=0;y++; continue; }
			data[y*10000+x] = [x, y, input[i]==="#"];
			x++;
		}

		let ac_max = -1;

		for(let cy=0; cy<height;cy++)
		for(let cx=0; cx<width;cx++)
		{
			if (!data[cy*10000+cx][2]) continue;

			// same  [dx,dy]/gcd  ===  hiding each other
			const count = Object.entries(data)
								.filter(p => p[1][2])
								.map(p => [cx-p[1][0], cy-p[1][1]])
								.filter(p => p[0] != 0 || p[1] != 0)
								.map(p => { const div = gcd(p[0], p[1]); return [ p[0]/div, p[1]/div ] })
								.map(p => p[0] * 10000 + p[1])
								.sort((a, b) => a - b).filter((v,i,s) => s.indexOf(v)===i) // unique
								.length;

			AdventOfCode.outputConsole(`${((count>ac_max)?"+":" ")}[${cx}|${cy}]  :=  ${count}`);

			if (count>ac_max) ac_max=count;
		}

		AdventOfCode.output(DAY, PROBLEM, ac_max.toString());
	}

	function gcd(x: number, y: number) 
	{
		x = Math.abs(x);
		y = Math.abs(y);
		while(y) { var t = y; y = x % y; x = t; }
		return x;
	}
}
Result: 344

Part 2:
namespace AdventOfCode2019_10_2
{
	const DAY     = 10;
	const PROBLEM = 2;

	export async function run()
	{
		let input = await AdventOfCode.getInput(DAY);
		if (input == null) return;
		input = input.trim();

		let data: { [_:number]:[number,number,boolean] } = {};

		const width  = input.split(new RegExp('\r?\n'))[0].length;
		const height = input.split(new RegExp('\r?\n')).length;
		
		let x=0;
		let y=0;
		for(let i=0; i<input.length;i++)
		{
			if (input[i]=="\r") continue;
			if (input[i]=="\n") { x=0;y++; continue; }
			data[y*10000+x] = [x, y, input[i]==="#"];
			x++;
		}

		let ac_max = -1;
		let ac_x = -1;
		let ac_y = -1;

		for(let cy=0; cy<height;cy++)
		for(let cx=0; cx<width;cx++)
		{
			if (!data[cy*10000+cx][2]) continue;

			// same  [dx,dy]/gcd  ===  hiding each other
			const count = Object.entries(data)
								.filter(p => p[1][2])
								.map(p => [cx-p[1][0], cy-p[1][1]])
								.filter(p => p[0] != 0 || p[1] != 0)
								.map(p => { const div = gcd(p[0], p[1]); return [ p[0]/div, p[1]/div ] })
								.map(p => p[0] * 10000 + p[1])
								.sort((a, b) => a - b).filter((v,i,s) => s.indexOf(v)===i) // unique
								.length;

			if (count>ac_max) { ac_max=count; ac_x=cx; ac_y=cy; }
		}

		AdventOfCode.outputConsole(`[${ac_x}|${ac_y}]  :=  ${ac_max}`);

		//-------------------------

		let asteroids = Object.entries(data)
			.filter(p => p[1][2])
			.map(p => [ p[1][0]-ac_x, p[1][1]-ac_y ])
			.filter(p => p[0] != 0 || p[1] != 0)            // rel_x | rel_y | norm_x |  norm_y |  dist | angle |                                          processed | x |        y |        order
			.map(p => { const div = gcd(p[0], p[1]); return [ p[0],    p[1],   p[0]/div, p[1]/div, div,   (Math.atan2(p[0], -p[1])+Math.PI*2)%(Math.PI*2), 1,          ac_x+p[0], ac_y+p[1]                  ] })
			.map(p => { const div = gcd(p[0], p[1]); return [ p[0],    p[1],   p[2],     p[3],     p[4],  p[5],                                            p[6],       p[7],      p[8],      p[5]*10000+p[4] ] })
			.sort((a, b) => a[9] - b[9])

		let ldx = -1;
		let ldy = -1;

		let idx=1;
		for(let i=0; i<asteroids.length; i++)
		{
			if (asteroids[i][6] === 0) continue;
			if (ldx==asteroids[i][2] && ldy==asteroids[i][3]) continue;

			AdventOfCode.outputConsole(`${idx} => [${asteroids[i][7]}|${asteroids[i][8]}]   /[${asteroids[i][0]}|${asteroids[i][1]}] @ ${asteroids[i][5]}:${asteroids[i][4]}`);

			ldx = asteroids[i][2];
			ldy = asteroids[i][3];
			asteroids[i][6] = 0;

			if (idx == 200)
			{
				AdventOfCode.output(DAY, PROBLEM, (asteroids[i][7]*100 + asteroids[i][8]).toString());
				return;
			}
			
			idx++;
		}
		
		AdventOfCode.output(DAY, PROBLEM, "ERR");
	}

	function gcd(x: number, y: number) 
	{
		x = Math.abs(x);
		y = Math.abs(y);
		while(y) { var t = y; y = x % y; x = t; }
		return x;
	}
}
Result: 2732


made with vanilla PHP and MySQL, no frameworks, no bootstrap, no unnecessary* javascript