-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path12.php
112 lines (87 loc) · 2.06 KB
/
12.php
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
$time_start = microtime(true);
$input = trim(file_get_contents('12.txt'));
$input = "AAAA
BBCD
BBCC
EEEC";
function walk(array $map, int $r, int $c, array &$seen, array &$region): int
{
// mark location as seen
$seen["$r-$c"] = true;
$region[] = [$r, $c];
static $directions = [
[-1, 0], // NORTH
[0, 1], // EAST
[1, 0], // SOUTH
[0, -1], // WEST
];
$perimeter = 0;
foreach ($directions as $o => $d) {
$r2 = $r + $d[0];
$c2 = $c + $d[1];
if ($r2 < 0 || $c2 < 0 || $r2 >= count($map) || $c2 >= strlen($map[$r2])) {
$perimeter++;
continue;
} else if ($map[$r2][$c2] === $map[$r][$c]) {
if (isset($seen["$r2-$c2"])) continue;
// descend into new plant spot
$perimeter += walk($map, $r2, $c2, $seen, $region);
} else {
$perimeter++;
}
}
return $perimeter;
}
function corners(array $region) {
$corners = 0;
foreach ($region as [$r, $c]) {
$left = [$r, $c-1];
$right = [$r, $c+1];
$up = [$r-1, $c];
$down = [$r+1, $c];
foreach ([
[-1, -1],
[-1, 1],
[1, 1],
[1, -1],
] as $d) {
}
if (!array_search($left, $region) && !array_search($up, $region)) {
$corners++;
}
if (!array_search($left, $region) && !array_search($down, $region)) {
$corners++;
}
if (!array_search($right, $region) && !array_search($up, $region)) {
$corners++;
}
if (!array_search($right, $region) && !array_search($down, $region)) {
$corners++;
}
}
return $corners;
}
$map = explode("\n", $input);
$seen = [];
$pt1 = 0;
$pt2 = 0;
for ($r = 0; $r < count($map); $r++) {
for ($c = 0; $c < strlen($map[$r]); $c++) {
if (isset($seen["$r-$c"])) continue;
$region = [];
$perimeter = walk($map, $r, $c, $seen, $region);
$area = count($region);
$pt1 += ($area * $perimeter);
$sides = corners($region);
echo "{$map[$r][$c]}: $sides\n";
$pt2 += $sides * $area;
}
}
echo "--- Day 12 ---", PHP_EOL;
echo "Part 1: ", $pt1, PHP_EOL;
echo "Part 2: ", $pt2, PHP_EOL;
echo "Took ", (microtime(true) - $time_start) * 1000, " ms", PHP_EOL;
echo PHP_EOL;
assert($pt1 === 1433460);
assert($pt2 === 855082);