-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart02.php
71 lines (62 loc) · 1.82 KB
/
part02.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
<?php
global $data;
$og = $data;
$newdata = array();
for ($ty = 0; $ty < 5; $ty++) {
if ($ty == 0) {
$tilerow = &$data;
} else {
$tilerow = array();
}
for ($tx = 0; $tx < 5; $tx++) {
$offset = $ty + $tx;
if ($offset == 0) {
continue;
}
foreach ($og as $y => &$row) {
if (empty($tilerow[$y])) {
$tilerow[$y] = array();
}
foreach ($row as $x => &$ele) {
$val = $ele + $offset;
if ($val > 9) {
$val = $val % 10 + 1;
}
$tilerow[$y][] = $val;
}
}
}
$newdata = array_merge($newdata, $data);
}
$data = &$newdata;
$costs = array_fill(0, count($data), array_fill(0, count($data[0]), PHP_INT_MAX));
$costs[0][0] = 0;
$changed = true;
while ($changed) {
$changed = false;
foreach ($costs as $y => &$row) {
foreach ($row as $x => &$ele) {
$base = $data[$x][$y];
if ($y > 0 && $costs[$y-1][$x] + $base < $ele) {
$changed = true;
$ele = $costs[$y-1][$x] + $base;
}
if ($y < count($costs) - 1 && $costs[$y+1][$x] + $base < $ele) {
$changed = true;
$ele = $costs[$y+1][$x] + $base;
}
if ($x > 0 && $costs[$y][$x-1] + $base < $ele) {
$changed = true;
$ele = $costs[$y][$x-1] + $base;
}
if ($x < count($row) - 1 && $costs[$y][$x+1] + $base < $ele) {
$changed = true;
$ele = $costs[$y][$x+1] + $base;
}
}
}
}
$cost = $costs[count($costs)-1][count($costs[0])-1];
?>
The cost is <?php echo $cost; ?>.
<?php /* vim: set expandtab tabstop=4 smarttab shiftwidth=4: */ ?>