-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathEnumerateConnectedCells.cpp
336 lines (294 loc) · 10.9 KB
/
EnumerateConnectedCells.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// Paste me into the FileEdit configuration dialog
// BEGIN CUT HERE
#define LOGLEVEL 1
// END CUT HERE
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <array>
#include <type_traits>
#include <queue>
#include <stack>
#include <functional>
using namespace std;
// BEGIN CUT HERE
#define LOG(l, x) \
if (l <= LOGLEVEL) \
cout << x << endl
// END CUT HERE
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF ((int)2E9L)
#define INT64_INF ((int64)1E18L)
#define MOD 1000000007
int dx[] = {0, 1, 0, -1};
int dy[] = {1, 0, -1, 0};
int n;
vector<pair<int, int>> origPoints;
int64 best = INT64_INF;
int64 dist(pair<int, int> a, pair<int, int> b) {
return abs((int64)a.first - b.first) + abs((int64)a.second - b.second);
}
void updateBest(const vector<pair<int, int>> &points) {
vector<pair<int, int>> translatedPoints(n);
for (int rootx = 0; rootx < n; ++rootx) for (int rooty = 0; rooty < n; ++rooty) {
for (int k = 0; k < n; ++k) {
for (int i = 0; i < n; ++i) {
translatedPoints[i] = make_pair(
origPoints[rootx].first + (points[i].first - points[k].first),
origPoints[rooty].second + (points[i].second - points[k].second)
);
}
vector<int> perm(n);
for (int i = 0; i < n; ++i) {
perm[i] = i;
}
do {
int64 ret = 0;
for (int i = 0; i < n; ++i) {
ret += dist(origPoints[i], translatedPoints[perm[i]]);
}
best = min(best, ret);
} while (next_permutation(perm.begin(), perm.end()));
}
}
}
// Enumerate all the set of possible connected cells (in a grid)
// The origin is picked at (0, 0). No other cells (x, y) should have
// x < 0 or (x == 0 and y < 0).
// Usage EnumerateConnectedCells(n, callBack): set n and the callback function
// that get calls when each connected set is found
class EnumerateConnectedCells {
vector<pair<int, int>> points;
vector<vector<bool>> visit;
function<void(const vector<pair<int, int>>&)> callback;
set<vector<pair<int, int>>> seen;
void tryBuild(int k) {
if (k == n + 1) {
vector<pair<int, int>> state = points;
sort(state.begin(), state.end());
if (seen.count(state)) {
return;
}
seen.insert(state);
callback(points);
return;
}
for (int t = 0; t < (int) points.size(); ++t) {
int x = points[t].first;
int y = points[t].second;
for (int i = 0; i < 4; ++i) {
int x2 = x + dx[i];
int y2 = y + dy[i];
if (!(x2 < 0 || (x2 == 0 && y2 < 0)) && !visit[x2][10 + y2]) {
points.push_back(make_pair(x2, y2));
visit[x2][10 + y2] = true;
tryBuild(k + 1);
points.pop_back();
visit[x2][10 + y2] = false;
}
}
}
}
public:
EnumerateConnectedCells(int numCells, function<void(const vector<pair<int, int>>&)> callback) {
this->callback = callback;
points.clear();
points.push_back(make_pair(0, 0));
visit.resize(numCells);
for (auto &v: visit) {
v.resize(numCells * 2);
}
seen.clear();
tryBuild(2);
}
};
// Sample: SRM 651, P2
class FoxConnection3 {
public:
long long minimalSteps( vector <int> x, vector <int> y ) {
n = (int) x.size();
origPoints.clear();
for_inc(i, n) {
origPoints.push_back(make_pair(x[i], y[i]));
}
best = INT64_INF;
EnumerateConnectedCells e(n, updateBest);
return best;
}
};
// BEGIN CUT HERE
#include <cstdio>
#include <ctime>
#include <iostream>
#include <string>
#include <vector>
namespace moj_harness {
using std::string;
using std::vector;
int run_test_case(int);
void run_test(int casenum = -1, bool quiet = false) {
if (casenum != -1) {
if (run_test_case(casenum) == -1 && !quiet) {
std::cerr << "Illegal input! Test case " << casenum << " does not exist." << std::endl;
}
return;
}
int correct = 0, total = 0;
for (int i=0;; ++i) {
int x = run_test_case(i);
if (x == -1) {
if (i >= 100) break;
continue;
}
correct += x;
++total;
}
if (total == 0) {
std::cerr << "No test cases run." << std::endl;
} else if (correct < total) {
std::cerr << "Some cases FAILED (passed " << correct << " of " << total << ")." << std::endl;
} else {
std::cerr << "All " << total << " tests passed!" << std::endl;
}
}
int verify_case(int casenum, const long long &expected, const long long &received, std::clock_t elapsed) {
std::cerr << "Example " << casenum << "... ";
string verdict;
vector<string> info;
char buf[100];
if (elapsed > CLOCKS_PER_SEC / 200) {
std::sprintf(buf, "time %.2fs", elapsed * (1.0/CLOCKS_PER_SEC));
info.push_back(buf);
}
if (expected == received) {
verdict = "PASSED";
} else {
verdict = "FAILED";
}
std::cerr << verdict;
if (!info.empty()) {
std::cerr << " (";
for (size_t i=0; i<info.size(); ++i) {
if (i > 0) std::cerr << ", ";
std::cerr << info[i];
}
std::cerr << ")";
}
std::cerr << std::endl;
if (verdict == "FAILED") {
std::cerr << " Expected: " << expected << std::endl;
std::cerr << " Received: " << received << std::endl;
}
return verdict == "PASSED";
}
int run_test_case(int casenum__) {
switch (casenum__) {
case 0: {
int x[] = {0,0,1,-2};
int y[] = {1,-1,0,0};
long long expected__ = 2;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 1: {
int x[] = {0,0,0,0,0,0};
int y[] = {1,2,3,4,5,6};
long long expected__ = 0;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 2: {
int x[] = {-123456789,-58585858,-47474747,123,456,789012345};
int y[] = {0,0,0,0,0,0};
long long expected__ = 1018530309;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 3: {
int x[] = {1,7,3,5,2};
int y[] = {2,7,5,3,7};
long long expected__ = 12;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 4: {
int x[] = {-3,0,1,-2,3,2};
int y[] = {2,-3,0,1,-1,-1};
long long expected__ = 10;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 5: {
int x[] = {-96277832,507856257,-86306299,-806700273,-775932643,-273209838};
int y[] = {-955536464,-599634138,399850429,-165706338,-537800480,738983556};
long long expected__ = 5247213600LL;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
case 6: {
int x[] = {0};
int y[] = {0};
long long expected__ = 0;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}
// custom cases
/* case 7: {
int x[] = ;
int y[] = ;
long long expected__ = ;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}*/
/* case 8: {
int x[] = ;
int y[] = ;
long long expected__ = ;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}*/
/* case 9: {
int x[] = ;
int y[] = ;
long long expected__ = ;
std::clock_t start__ = std::clock();
long long received__ = FoxConnection3().minimalSteps(vector <int>(x, x + (sizeof x / sizeof x[0])), vector <int>(y, y + (sizeof y / sizeof y[0])));
return verify_case(casenum__, expected__, received__, clock()-start__);
}*/
default:
return -1;
}
}
}
#include <cstdlib>
int main(int argc, char *argv[]) {
if (argc == 1) {
moj_harness::run_test();
} else {
for (int i=1; i<argc; ++i)
moj_harness::run_test(std::atoi(argv[i]));
}
}
// END CUT HERE