-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-2.ts
68 lines (55 loc) · 2.87 KB
/
02-2.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// --- Part Two ---
// Based on your calculations, the planned course doesn't seem to make any sense. You find the submarine manual and discover that the process is actually slightly more complicated.
// In addition to horizontal position and depth, you'll also need to track a third value, aim, which also starts at 0. The commands also mean something entirely different than you first thought:
// down X increases your aim by X units.
// up X decreases your aim by X units.
// forward X does two things:
// It increases your horizontal position by X units.
// It increases your depth by your aim multiplied by X.
// Again note that since you're on a submarine, down and up do the opposite of what you might expect: "down" means aiming in the positive direction.
// Now, the above example does something different:
// forward 5 adds 5 to your horizontal position, a total of 5. Because your aim is 0, your depth does not change.
// down 5 adds 5 to your aim, resulting in a value of 5.
// forward 8 adds 8 to your horizontal position, a total of 13. Because your aim is 5, your depth increases by 8*5=40.
// up 3 decreases your aim by 3, resulting in a value of 2.
// down 8 adds 8 to your aim, resulting in a value of 10.
// forward 2 adds 2 to your horizontal position, a total of 15. Because your aim is 10, your depth increases by 2*10=20 to a total of 60.
// After following these new instructions, you would have a horizontal position of 15 and a depth of 60. (Multiplying these produces 900.)
// Using this new interpretation of the commands, calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?
import * as fs from "fs";
import * as path from "path";
interface Position {
horizontal: number;
depth: number; // positive number lower depth, negative number higher depth
aim: number;
}
const main = async () => {
const raw = await fs.promises.readFile(
path.join(__dirname, "./02-1input"),
"utf8"
);
const lines = raw.split("\n").slice(0, -1);
const result: Position = lines.reduce(
(acc, curr) => {
const [direction, amount] = curr.split(" ");
switch (direction) {
case "forward":
acc.horizontal = acc.horizontal + Number(amount);
if (acc.aim !== 0) acc.depth = acc.depth + Number(amount) * acc.aim;
break;
case "down":
acc.aim = acc.aim + Number(amount);
break;
case "up":
acc.aim = acc.aim - Number(amount);
break;
}
// console.log(acc);
return acc;
},
{ horizontal: 0, depth: 0, aim: 0 }
);
console.log("position", result); // position { horizontal: 1962, depth: 1017893, aim: 987 }
console.log("h * d = ", result.horizontal * result.depth); // h * d = 1997106066
};
main();