-
Notifications
You must be signed in to change notification settings - Fork 0
/
Puzzle08.php
170 lines (135 loc) · 4.11 KB
/
Puzzle08.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php declare(strict_types=1);
namespace AdventOfCode2020;
echo sprintf('Puzzle 8 part 1: %d'.PHP_EOL, (new Puzzle08())->part1());
echo sprintf('Puzzle 8 part 2: %d'.PHP_EOL, (new Puzzle08())->part2());
final class Puzzle08
{
/** @var Instruction[] $usedInstructions */
private array $usedInstructions = [];
private int $accumulator = 0;
public function part1(): int
{
$i = 0;
$instructions = $this->getInstructions();
while (true) {
$instruction = $instructions[$i] ?? null;
if (null === $instruction || in_array($i, $this->usedInstructions)) {
return $this->accumulator;
}
$this->usedInstructions[] = $i;
if ($instruction->isAcc()) {
$i++;
$this->accumulator += $instruction->getValue();
} elseif ($instruction->isNop()) {
$i++;
} elseif ($instruction->isJmp()) {
$i += $instruction->getValue();
}
}
}
public function part2(): int
{
$instructions = $this->getInstructions();
$instructionCount = count($instructions);
for ($i = 0; $i < $instructionCount; $i++) {
$tryInstructions = [];
foreach ($instructions as $k => $in) {
$tryInstructions[$k] = clone $in;
}
if (Operation::JMP === ($tryInstructions[$i])->getOperation()) {
($tryInstructions[$i])->setOperation(Operation::NOP);
} elseif (Operation::NOP === ($tryInstructions[$i])->getOperation()) {
($tryInstructions[$i])->setOperation(Operation::JMP);
} else {
continue;
}
$accumulator = $this->accumulate($tryInstructions);
if (null !== $accumulator) {
return $accumulator;
}
}
return 0;
}
/**
* @param Instruction[] $instructions
*/
private function accumulate(array $instructions): ?int
{
$this->usedInstructions = [];
$i = 0;
$accumulator = 0;
while (true) {
if ($i === count($instructions)) {
return $accumulator;
}
$instruction = $instructions[$i];
if (in_array($i, $this->usedInstructions)) {
return null;
}
$this->usedInstructions[] = $i;
if ($instruction->isAcc()) {
$i++;
$accumulator += $instruction->getValue();
} elseif ($instruction->isNop()) {
$i++;
} elseif ($instruction->isJmp()) {
$i += $instruction->getValue();
}
}
}
/**
* @return Instruction[]
*/
private function getInstructions(): array
{
$fp = @fopen('Input08.txt', 'rb');
$instructions = [];
if ($fp) {
while (($line = fgets($fp, 4096)) !== false) {
$instructionArray = explode(' ', trim(preg_replace('/\s+/', ' ', $line)));
$instructions[] = new Instruction($instructionArray[0], (int)$instructionArray[1]);
}
}
return $instructions;
}
}
final class Operation
{
public const NOP = 'nop';
public const ACC = 'acc';
public const JMP = 'jmp';
}
final class Instruction
{
private string $operation;
private int $value;
public function __construct(string $operation, int $value)
{
$this->operation = $operation;
$this->value = $value;
}
public function getOperation(): string
{
return $this->operation;
}
public function getValue(): int
{
return $this->value;
}
public function isNop(): bool
{
return Operation::NOP === $this->operation;
}
public function isAcc(): bool
{
return Operation::ACC === $this->operation;
}
public function isJmp(): bool
{
return Operation::JMP === $this->operation;
}
public function setOperation(string $operation): void
{
$this->operation = $operation;
}
}