-
Notifications
You must be signed in to change notification settings - Fork 0
/
22b.php
122 lines (98 loc) · 2.5 KB
/
22b.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
<?php
include 'utilities.php';
$grid = [];
$lines = explode("\n", input());
$half = intval(floor(count($lines) / 2));
for ($i = $half * -1; $i <= $half; $i++) {
$line_chars = str_split($lines[$i + $half]);
for ($j = $half * -1; $j <= $half; $j++) {
$grid[$i][$j] = $line_chars[$j + $half] === '.' ? 'C' : 'I';
}
}
$burst = $infection = $x = $y = 0;
$direction = 'up';
while ($burst < 10000000) {
if (!isset($grid[$x][$y])) {
$grid[$x][$y] = 'C';
}
if ($grid[$x][$y] === 'C') {
$grid[$x][$y] = 'W';
switch ($direction) {
case 'up':
$y--;
$direction = 'left';
break;
case 'right':
$x--;
$direction = 'up';
break;
case 'down':
$y++;
$direction = 'right';
break;
case 'left':
$x++;
$direction = 'down';
break;
}
} else if ($grid[$x][$y] === 'I') {
$grid[$x][$y] = 'F';
switch ($direction) {
case 'up':
$y++;
$direction = 'right';
break;
case 'right':
$x++;
$direction = 'down';
break;
case 'down':
$y--;
$direction = 'left';
break;
case 'left':
$x--;
$direction = 'up';
break;
}
} else if ($grid[$x][$y] === 'W') {
$grid[$x][$y] = 'I';
$infection++;
switch ($direction) {
case 'up':
$x--;
break;
case 'right':
$y++;
break;
case 'down':
$x++;
break;
case 'left':
$y--;
break;
}
} else if ($grid[$x][$y] === 'F') {
$grid[$x][$y] = 'C';
switch ($direction) {
case 'up':
$x++;
$direction = 'down';
break;
case 'right':
$y--;
$direction = 'left';
break;
case 'down':
$x--;
$direction = 'up';
break;
case 'left':
$y++;
$direction = 'right';
break;
}
}
$burst++;
}
echo $infection . PHP_EOL;