-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
130 lines (112 loc) · 3.06 KB
/
main.cpp
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
#include <iostream>
#include <json/json.h>
#include <getopt.h>
#include <fstream>
#include "Finder.h"
using std::string;
using std::vector;
using Json::Reader;
using Json::Writer;
using std::ifstream;
using std::cout;
using std::endl;
using namespace icfp2015;
int main(int argc, char **argv) {
vector<string> ofPower;
int opt;
long memLimit;
long timeLimit;
string fName;
Json::Reader x;
Json::Value root;
bool printUnits = false, showScore = false, showPower = false, runOne = false;
int printField = 0;
while ((opt = getopt(argc, argv, "f:t:m:p:FUSPO")) >= 0) {
switch (opt) {
case 'O':
runOne = true;
break;
case 'P':
showPower = true;
break;
case 'F':
++printField;
break;
case 'U':
printUnits = true;
break;
case 'S':
showScore = true;
break;
case 'f':
fName = optarg;
break;
case 't':
timeLimit = strtol(optarg, NULL, 10);
break;
case 'm':
memLimit = strtol(optarg, NULL, 10);
break;
case 'p':
ofPower.push_back(optarg);
break;
default:
if (opt > 0) {
printf("unidentified arg '%c'\n", (char) opt);
} else {
printf("no args?\n");
}
return 1;
}
}
{
ifstream file(fName);
x.parse(file, root, false);
}
long id = root["id"].asInt64();
if (printField || printUnits || showPower || showScore)
glbLog.Setup(id);
Field f(root);
if (printField)
f.print(string("Initial field status"));
Units u(root);
if (printUnits) {
for (int i = 0; i < u.num(); ++i) {
Unit tmp = u[i];
glbLog() << "------- unit " << i << endl;
for (int j = 0; j < 6; ++j) {
tmp.print();
tmp.rotate(true);
if (tmp == u[i]) break;
}
}
}
RNGSeeds s(root);
int maxUnits = root["sourceLength"].asInt();
Finder k(ofPower);
if (showPower) {
k.print();
}
Json::Value outRoot(Json::arrayValue);
long allScores = 0;
for (RNG &gen : s.list) {
long seed = gen.seed();
Solver slv(gen, f, u, k.Words());
int baseScore = (int) slv.Run(printField, maxUnits);
int powerScore = k.FormatSolution(slv.getSol(), id, seed, outRoot);
if (showScore) {
glbLog() << "solution score: " << baseScore + powerScore << endl;
allScores += baseScore + powerScore;
}
if (runOne)
break;
}
if (showScore) {
glbLog() << "board score: " << allScores / s.list.size() << endl;
}
{
Json::FastWriter fw;
printf("%s", fw.write(outRoot).c_str());
}
return 0;
}