A piece of library code which constructs a random division of a
[sgt/puzzles] / unfinished / divvy.c
CommitLineData
11d273f7 1/*
2 * Library code to divide up a rectangle into a number of equally
3 * sized ominoes, in a random fashion.
4 *
5 * Could use this for generating solved grids of
6 * http://www.nikoli.co.jp/ja/puzzles/block_puzzle/
7 * or for generating the playfield for Jigsaw Sudoku.
8 */
9
10#include <assert.h>
11#include <stdio.h>
12#include <stdlib.h>
13#include <stddef.h>
14
15#include "puzzles.h"
16
17/*
18 * Subroutine which implements a function used in computing both
19 * whether a square can safely be added to an omino, and whether
20 * it can safely be removed.
21 *
22 * We enumerate the eight squares 8-adjacent to this one, in
23 * cyclic order. We go round that loop and count the number of
24 * times we find a square owned by the target omino next to one
25 * not owned by it. We then return success iff that count is 2.
26 *
27 * When adding a square to an omino, this is precisely the
28 * criterion which tells us that adding the square won't leave a
29 * hole in the middle of the omino. (There's no explicit
30 * requirement in the statement of our problem that the ominoes be
31 * simply connected, but we do know they must be all of equal size
32 * and so it's clear that we must avoid leaving holes, since a
33 * hole would necessarily be smaller than the maximum omino size.)
34 *
35 * When removing a square from an omino, the _same_ criterion
36 * tells us that removing the square won't disconnect the omino.
37 */
38static int addremcommon(int w, int h, int x, int y, int *own, int val)
39{
40 int neighbours[8];
41 int dir, count;
42
43 for (dir = 0; dir < 8; dir++) {
44 int dx = ((dir & 3) == 2 ? 0 : dir > 2 && dir < 6 ? +1 : -1);
45 int dy = ((dir & 3) == 0 ? 0 : dir < 4 ? -1 : +1);
46 int sx = x+dx, sy = y+dy;
47
48 if (sx < 0 || sx >= w || sy < 0 || sy >= h)
49 neighbours[dir] = -1; /* outside the grid */
50 else
51 neighbours[dir] = own[sy*w+sx];
52 }
53
54 /*
55 * To begin with, check 4-adjacency.
56 */
57 if (neighbours[0] != val && neighbours[2] != val &&
58 neighbours[4] != val && neighbours[6] != val)
59 return FALSE;
60
61 count = 0;
62
63 for (dir = 0; dir < 8; dir++) {
64 int next = (dir + 1) & 7;
65 int gotthis = (neighbours[dir] == val);
66 int gotnext = (neighbours[next] == val);
67
68 if (gotthis != gotnext)
69 count++;
70 }
71
72 return (count == 2);
73}
74
75/*
76 * w and h are the dimensions of the rectangle.
77 *
78 * k is the size of the required ominoes. (So k must divide w*h,
79 * of course.)
80 *
81 * The returned result is a w*h-sized dsf.
82 *
83 * In both of the above suggested use cases, the user would
84 * probably want w==h==k, but that isn't a requirement.
85 */
86int *divvy_rectangle(int w, int h, int k, random_state *rs)
87{
88 int *order, *queue, *tmp, *own, *sizes, *addable, *removable, *retdsf;
89 int wh = w*h;
90 int i, j, n, x, y, qhead, qtail;
91
92 n = wh / k;
93 assert(wh == k*n);
94
95 order = snewn(wh, int);
96 tmp = snewn(wh, int);
97 own = snewn(wh, int);
98 sizes = snewn(n, int);
99 queue = snewn(n, int);
100 addable = snewn(wh*4, int);
101 removable = snewn(wh, int);
102
103 /*
104 * Permute the grid squares into a random order, which will be
105 * used for iterating over the grid whenever we need to search
106 * for something. This prevents directional bias and arranges
107 * for the answer to be non-deterministic.
108 */
109 for (i = 0; i < wh; i++)
110 order[i] = i;
111 shuffle(order, wh, sizeof(*order), rs);
112
113 /*
114 * Begin by choosing a starting square at random for each
115 * omino.
116 */
117 for (i = 0; i < wh; i++) {
118 own[i] = -1;
119 }
120 for (i = 0; i < n; i++) {
121 own[order[i]] = i;
122 sizes[i] = 1;
123 }
124
125 /*
126 * Now repeatedly pick a random omino which isn't already at
127 * the target size, and find a way to expand it by one. This
128 * may involve stealing a square from another omino, in which
129 * case we then re-expand that omino, forming a chain of
130 * square-stealing which terminates in an as yet unclaimed
131 * square. Hence every successful iteration around this loop
132 * causes the number of unclaimed squares to drop by one, and
133 * so the process is bounded in duration.
134 */
135 while (1) {
136
137#ifdef DIVVY_DIAGNOSTICS
138 {
139 int x, y;
140 printf("Top of loop. Current grid:\n");
141 for (y = 0; y < h; y++) {
142 for (x = 0; x < w; x++)
143 printf("%3d", own[y*w+x]);
144 printf("\n");
145 }
146 }
147#endif
148
149 /*
150 * Go over the grid and figure out which squares can
151 * safely be added to, or removed from, each omino. We
152 * don't take account of other ominoes in this process, so
153 * we will often end up knowing that a square can be
154 * poached from one omino by another.
155 *
156 * For each square, there may be up to four ominoes to
157 * which it can be added (those to which it is
158 * 4-adjacent).
159 */
160 for (y = 0; y < h; y++) {
161 for (x = 0; x < w; x++) {
162 int yx = y*w+x;
163 int curr = own[yx];
164 int dir;
165
166 if (curr < 0) {
167 removable[yx] = 0; /* can't remove if it's not owned! */
168 } else {
169 /*
170 * See if this square can be removed from its
171 * omino without disconnecting it.
172 */
173 removable[yx] = addremcommon(w, h, x, y, own, curr);
174 }
175
176 for (dir = 0; dir < 4; dir++) {
177 int dx = (dir == 0 ? -1 : dir == 1 ? +1 : 0);
178 int dy = (dir == 2 ? -1 : dir == 3 ? +1 : 0);
179 int sx = x + dx, sy = y + dy;
180 int syx = sy*w+sx;
181
182 addable[yx*4+dir] = -1;
183
184 if (sx < 0 || sx >= w || sy < 0 || sy >= h)
185 continue; /* no omino here! */
186 if (own[syx] < 0)
187 continue; /* also no omino here */
188 if (own[syx] == own[yx])
189 continue; /* we already got one */
190 if (!addremcommon(w, h, x, y, own, own[syx]))
191 continue; /* would non-simply connect the omino */
192
193 addable[yx*4+dir] = own[syx];
194 }
195 }
196 }
197
198 for (i = j = 0; i < n; i++)
199 if (sizes[i] < k)
200 tmp[j++] = i;
201 if (j == 0)
202 break; /* all ominoes are complete! */
203 j = tmp[random_upto(rs, j)];
204
205 /*
206 * So we're trying to expand omino j. We breadth-first
207 * search out from j across the space of ominoes.
208 *
209 * For bfs purposes, we use two elements of tmp per omino:
210 * tmp[2*i+0] tells us which omino we got to i from, and
211 * tmp[2*i+1] numbers the grid square that omino stole
212 * from us.
213 *
214 * This requires that wh (the size of tmp) is at least 2n,
215 * i.e. k is at least 2. There would have been nothing to
216 * stop a user calling this function with k=1, but if they
217 * did then we wouldn't have got to _here_ in the code -
218 * we would have noticed above that all ominoes were
219 * already at their target sizes, and terminated :-)
220 */
221 assert(wh >= 2*n);
222 for (i = 0; i < n; i++)
223 tmp[2*i] = tmp[2*i+1] = -1;
224 qhead = qtail = 0;
225 queue[qtail++] = j;
226 tmp[2*j] = tmp[2*j+1] = -2; /* special value: `starting point' */
227
228 while (qhead < qtail) {
229 int tmpsq;
230
231 j = queue[qhead];
232
233 /*
234 * We wish to expand omino j. However, we might have
235 * got here by omino j having a square stolen from it,
236 * so first of all we must temporarily mark that
237 * square as not belonging to j, so that our adjacency
238 * calculations don't assume j _does_ belong to us.
239 */
240 tmpsq = tmp[2*j+1];
241 if (tmpsq >= 0) {
242 assert(own[tmpsq] == j);
243 own[tmpsq] = -1;
244 }
245
246 /*
247 * OK. Now begin by seeing if we can find any
248 * unclaimed square into which we can expand omino j.
249 * If we find one, the entire bfs terminates.
250 */
251 for (i = 0; i < wh; i++) {
252 int dir;
253
254 if (own[order[i]] >= 0)
255 continue; /* this square is claimed */
256 for (dir = 0; dir < 4; dir++)
257 if (addable[order[i]*4+dir] == j) {
258 /*
259 * We know this square is addable to this
260 * omino with the grid in the state it had
261 * at the top of the loop. However, we
262 * must now check that it's _still_
263 * addable to this omino when the omino is
264 * missing a square. To do this it's only
265 * necessary to re-check addremcommon.
266~|~ */
267 if (!addremcommon(w, h, order[i]%w, order[i]/w,
268 own, j))
269 continue;
270 break;
271 }
272 if (dir == 4)
273 continue; /* we can't add this square to j */
274 break; /* got one! */
275 }
276 if (i < wh) {
277 i = order[i];
278
279 /*
280 * We are done. We can add square i to omino j,
281 * and then backtrack along the trail in tmp
282 * moving squares between ominoes, ending up
283 * expanding our starting omino by one.
284 */
285 while (1) {
286 own[i] = j;
287 if (tmp[2*j] == -2)
288 break;
289 i = tmp[2*j+1];
290 j = tmp[2*j];
291 }
292
293 /*
294 * Increment the size of the starting omino.
295 */
296 sizes[j]++;
297
298 /*
299 * Terminate the bfs loop.
300 */
301 break;
302 }
303
304 /*
305 * If we get here, we haven't been able to expand
306 * omino j into an unclaimed square. So now we begin
307 * to investigate expanding it into squares which are
308 * claimed by ominoes the bfs has not yet visited.
309 */
310 for (i = 0; i < wh; i++) {
311 int dir, nj;
312
313 nj = own[order[i]];
314 if (nj < 0 || tmp[2*nj] != -1)
315 continue; /* unclaimed, or owned by wrong omino */
316 if (!removable[order[i]])
317 continue; /* its omino won't let it go */
318
319 for (dir = 0; dir < 4; dir++)
320 if (addable[order[i]*4+dir] == j) {
321 /*
322 * As above, re-check addremcommon.
323 */
324 if (!addremcommon(w, h, order[i]%w, order[i]/w,
325 own, j))
326 continue;
327
328 /*
329 * We have found a square we can use to
330 * expand omino j, at the expense of the
331 * as-yet unvisited omino nj. So add this
332 * to the bfs queue.
333 */
334 assert(qtail < n);
335 queue[qtail++] = nj;
336 tmp[2*nj] = j;
337 tmp[2*nj+1] = order[i];
338
339 /*
340 * Now terminate the loop over dir, to
341 * ensure we don't accidentally add the
342 * same omino twice to the queue.
343 */
344 break;
345 }
346 }
347
348 /*
349 * Restore the temporarily removed square.
350 */
351 if (tmpsq >= 0)
352 own[tmpsq] = j;
353
354 /*
355 * Advance the queue head.
356 */
357 qhead++;
358 }
359
360 if (qhead == qtail) {
361 /*
362 * We have finished the bfs and not found any way to
363 * expand omino j. Panic, and return failure.
364 *
365 * FIXME: or should we loop over all ominoes before we
366 * give up?
367 */
368 retdsf = NULL;
369 goto cleanup;
370 }
371 }
372
373 /*
374 * Construct the output dsf.
375 */
376 for (i = 0; i < wh; i++) {
377 assert(own[i] >= 0 && own[i] < n);
378 tmp[own[i]] = i;
379 }
380 retdsf = snew_dsf(wh);
381 for (i = 0; i < wh; i++) {
382 dsf_merge(retdsf, i, tmp[own[i]]);
383 }
384
385 /*
386 * Construct the output dsf a different way, to verify that
387 * the ominoes really are k-ominoes and we haven't
388 * accidentally split one into two disconnected pieces.
389 */
390 dsf_init(tmp, wh);
391 for (y = 0; y < h; y++)
392 for (x = 0; x+1 < w; x++)
393 if (own[y*w+x] == own[y*w+(x+1)])
394 dsf_merge(tmp, y*w+x, y*w+(x+1));
395 for (x = 0; x < w; x++)
396 for (y = 0; y+1 < h; y++)
397 if (own[y*w+x] == own[(y+1)*w+x])
398 dsf_merge(tmp, y*w+x, (y+1)*w+x);
399 for (i = 0; i < wh; i++) {
400 j = dsf_canonify(retdsf, i);
401 assert(dsf_canonify(tmp, j) == dsf_canonify(tmp, i));
402 }
403
404 cleanup:
405
406 /*
407 * Free our temporary working space.
408 */
409 sfree(order);
410 sfree(tmp);
411 sfree(own);
412 sfree(sizes);
413 sfree(queue);
414 sfree(addable);
415 sfree(removable);
416
417 /*
418 * And we're done.
419 */
420 return retdsf;
421}
422
423#ifdef TESTMODE
424
425/*
426 * gcc -g -O0 -DTESTMODE -I.. -o divvy divvy.c ../random.c ../malloc.c ../dsf.c ../misc.c ../nullfe.c
427 *
428 * or to debug
429 *
430 * gcc -g -O0 -DDIVVY_DIAGNOSTICS -DTESTMODE -I.. -o divvy divvy.c ../random.c ../malloc.c ../dsf.c ../misc.c ../nullfe.c
431 */
432
433int main(int argc, char **argv)
434{
435 int *dsf;
436 int i, successes;
437 int w = 9, h = 4, k = 6, tries = 100;
438 random_state *rs;
439
440 rs = random_new("123456", 6);
441
442 if (argc > 1)
443 w = atoi(argv[1]);
444 if (argc > 2)
445 h = atoi(argv[2]);
446 if (argc > 3)
447 k = atoi(argv[3]);
448 if (argc > 4)
449 tries = atoi(argv[4]);
450
451 successes = 0;
452 for (i = 0; i < tries; i++) {
453 dsf = divvy_rectangle(w, h, k, rs);
454 if (dsf) {
455 int x, y;
456
457 successes++;
458
459 for (y = 0; y <= 2*h; y++) {
460 for (x = 0; x <= 2*w; x++) {
461 int miny = y/2 - 1, maxy = y/2;
462 int minx = x/2 - 1, maxx = x/2;
463 int classes[4], tx, ty;
464 for (ty = 0; ty < 2; ty++)
465 for (tx = 0; tx < 2; tx++) {
466 int cx = minx+tx, cy = miny+ty;
467 if (cx < 0 || cx >= w || cy < 0 || cy >= h)
468 classes[ty*2+tx] = -1;
469 else
470 classes[ty*2+tx] = dsf_canonify(dsf, cy*w+cx);
471 }
472 switch (y%2 * 2 + x%2) {
473 case 0: /* corner */
474 /*
475 * Cases for the corner:
476 *
477 * - if all four surrounding squares
478 * belong to the same omino, we print a
479 * space.
480 *
481 * - if the top two are the same and the
482 * bottom two are the same, we print a
483 * horizontal line.
484 *
485 * - if the left two are the same and the
486 * right two are the same, we print a
487 * vertical line.
488 *
489 * - otherwise, we print a cross.
490 */
491 if (classes[0] == classes[1] &&
492 classes[1] == classes[2] &&
493 classes[2] == classes[3])
494 printf(" ");
495 else if (classes[0] == classes[1] &&
496 classes[2] == classes[3])
497 printf("-");
498 else if (classes[0] == classes[2] &&
499 classes[1] == classes[3])
500 printf("|");
501 else
502 printf("+");
503 break;
504 case 1: /* horiz edge */
505 if (classes[1] == classes[3])
506 printf(" ");
507 else
508 printf("--");
509 break;
510 case 2: /* vert edge */
511 if (classes[2] == classes[3])
512 printf(" ");
513 else
514 printf("|");
515 break;
516 case 3: /* square centre */
517 printf(" ");
518 break;
519 }
520 }
521 printf("\n");
522 }
523 printf("\n");
524 sfree(dsf);
525 }
526 }
527
528 printf("%d successes out of %d tries\n", successes, tries);
529
530 return 0;
531}
532
533#endif