-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrid.cpp
357 lines (293 loc) · 6.24 KB
/
Grid.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#include <stdio.h>
#include "Grid.h"
namespace sudokusolver {
static int sSupposition = 0;
static int sSuppositionTot = 0;
Grid::Grid(int values[9][9])
{
std::array<std::array<Cell, 9>, 9> cells;
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (values[i][j] != 0) {
cells[i][j] = Cell(values[i][j]);
} else {
cells[i][j] = Cell();
}
}
}
mCells.push_back(cells);
}
Grid::~Grid()
{
}
void Grid::dump()
{
dump(mCells.back());
}
void Grid::dump(std::array<std::array<Cell, 9>, 9> cells)
{
printf("Total supposition count : %d\n", sSuppositionTot);
printf("supposition count : %d\n", sSupposition);
printf(" +---------------------+\n");
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (j % 3 == 0) {
printf(" |");
}
if (cells[i][j].getValue() != 0) {
printf("%d|", cells[i][j].getValue());
} else {
printf("\033[31m%d\e[0m|", cells[i][j].getValue());
}
}
if (((i+1) % 3 == 0) && i != 8) {
printf("\n | |");
}
printf("\n");
}
printf(" +---------------------+\n");
}
void Grid::advancedDump()
{
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
(mCells.back())[i][j].dump();
}
}
}
bool Grid::resolve(Grid* grid)
{
bool solved;
bool suppositionDone = true;
bool ret;
bool undo = true;
if (!grid->check()) {
return false;
}
if (!grid->basicResolve()) {
return false;
}
solved = grid->isSolved();
if (!solved) {
ret = false;
undo = true;
do {
if (grid->doSupposition()) {
if (Grid::resolve(grid)) {
return grid->check();
}
}
if (!grid->undoSupposition()) {
return false;
}
} while (1);
}
return grid->check();
}
bool Grid::basicResolve()
{
bool updated;
bool isPossible;
bool isUnique;
do {
updated = false;
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
for (int value = 1; value <= 9; value++) {
if ((mCells.back())[i][j].isPossible(value) && !((mCells.back())[i][j].isFixed())) {
check(value, i, j, &isPossible, &isUnique);
if (!isPossible) {
updated |= (mCells.back())[i][j].invalidate(value);
if (!(mCells.back())[i][j].isPossible()) {
return false;
}
} else if (isUnique) {
updated |= (mCells.back())[i][j].set(value);
}
}
}
}
}
} while (updated);
return true;
}
bool Grid::findValueForSupposition(int x, int y, int* value)
{
int supposition = -1;
for (int lvalue: mCells.back()[x][y].getPossibleSupposition()) {
supposition = lvalue;
break;
}
if (supposition == -1) {
return false;
}
*value = supposition;
return true;
}
bool Grid::findPlaceForSupposition(int* x, int* y)
{
int betterX = -1;
int betterY = -1;
int betterPossibilityCount = 10;
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
std::vector<int> values;
values = mCells.back()[i][j].getPossibleSupposition();
if (values.size() > 1 && values.size() < betterPossibilityCount) {
betterX = i;
betterY = j;
betterPossibilityCount = values.size();
if (betterPossibilityCount == 2) {
//We find the better place, do not need to fetch all the grid
goto exit;
}
}
}
}
if (betterX == -1) {
return false;
}
exit:
*x = betterX;
*y = betterY;
return true;
}
bool Grid::doSupposition()
{
int x;
int y;
int supposition;
std::array<std::array<Cell, 9>, 9> newCells;
if (!findPlaceForSupposition(&x, &y)) {
//No more supposition available for this grid
return false;
}
if (!findValueForSupposition(x, y, &supposition)) {
return false;
}
// Mark this value as tryed
mCells.back()[x][y].suppose(supposition);
//Copy the current grid
newCells = mCells.back();
//Set the supposed value
newCells[x][y].set(supposition);
//Mark the new grid as current
mCells.push_back(newCells);
sSupposition++;
sSuppositionTot++;
return true;
}
bool Grid::undoSupposition()
{
if (mCells.size() == 1) {
printf("unable to undo the supposition\n");
return false;
}
sSupposition--;
mCells.pop_back();
return true;
}
void Grid::check(int value, int x, int y, bool* isPossible, bool* isUnique)
{
checkHorizontal(value, x, y , isPossible, isUnique);
if (!(*isPossible)) {
return;
}
checkVertical(value, x, y , isPossible, isUnique);
if (!(*isPossible)) {
return;
}
checkArea(value, x, y , isPossible, isUnique);
}
void Grid::checkHorizontal(int value, int x, int y, bool* isPossible, bool* isUnique)
{
*isPossible = true;
*isUnique = true;
for (int i = 0; i < 9; i++) {
if (i == y) {
continue;
}
if ((mCells.back())[x][i].getValue() == value) {
*isPossible = false;
*isUnique = false;
break;
}
if ((mCells.back())[x][i].isPossible(value)) {
*isUnique = false;
}
}
}
void Grid::checkVertical(int value, int x, int y, bool* isPossible, bool* isUnique)
{
*isPossible = true;
*isUnique = true;
for (int i = 0; i < 9; i++) {
if (i == x) {
continue;
}
if ((mCells.back())[i][y].getValue() == value) {
*isPossible = false;
*isUnique = false;
break;
}
if ((mCells.back())[i][y].isPossible(value)) {
*isUnique = false;
}
}
}
void Grid::checkArea(int value, int x, int y, bool* isPossible, bool* isUnique)
{
int macroX = ((int)(x / 3) * 3);
int macroY = ((int)(y / 3) * 3);
*isPossible = true;
*isUnique = true;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
if (((macroX + i) == x) && ((macroY + j) == y)) {
continue;
}
if ((mCells.back())[macroX + i][macroY + j].getValue() == value) {
*isPossible = false;
*isUnique = false;
goto exit;
}
if ((mCells.back())[macroX + i][macroY + j].isPossible(value)) {
*isUnique = false;
}
}
}
exit:
return;
}
bool Grid::isSolved()
{
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (!(mCells.back())[i][j].isFixed()) {
return false;
}
}
}
return check();
}
bool Grid::check()
{
bool isPossible;
bool isUnique;
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (!(mCells.back())[i][j].isFixed()) {
if (!(mCells.back())[i][j].isPossible()) {
return false;
}
} else {
check((mCells.back())[i][j].getValue(), i, j, &isPossible, &isUnique);
if (!isPossible) {
return false;
}
}
}
}
return true;
}
} //namespace sudokusolver {