-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.php
More file actions
51 lines (39 loc) · 848 Bytes
/
main.php
File metadata and controls
51 lines (39 loc) · 848 Bytes
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
<?php
include 'Reader.php';
include 'Writer.php';
include 'Solver.php';
include 'Scorer.php';
$FILES = [
'a.txt',
'b.txt',
'c.txt',
'd.txt',
'e.txt',
'f.txt',
];
$total_score = 0;
foreach ($FILES as $filename) {
$reader = new Reader($filename);
$data = $reader->read();
$solver = new Solver($data);
$solution = $solver->solve();
$plan = $solution['plan'];
$output = $solution['output'];
$scorer = new Scorer($data, $plan);
$file_score = $scorer->calculate();
$total_score += $file_score;
d("$filename: " . n($file_score));
$writer = new Writer($filename, $output);
$writer->write();
}
d("TOTAL: " . n($total_score));
function n($number) {
return number_format($number, 0, '', ',');
}
function d($output) {
if (is_string($output)) {
echo $output . "\n";
} else {
print_r($output);
}
}