-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsudoku.es.cc
201 lines (186 loc) · 4.72 KB
/
sudoku.es.cc
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
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Posibles {
vector<bool> _b;
public:
Posibles() : _b(9, true) {}
bool activo(int i) const { return _b[i-1]; }
int num_activos() const { return count(_b.begin(), _b.end(), true); }
void elimina(int i) { _b[i-1] = false; }
int val() const {
auto it = find(_b.begin(), _b.end(), true);
return (it != _b.end() ? 1 + (it - _b.begin()) : -1);
}
string str(int ancho) const;
};
string Posibles::str(int ancho) const {
string s(ancho, ' ');
int k = 0;
for (int i = 1; i <= 9; i++) {
if (activo(i)) s[k++] = '0' + i;
}
return s;
}
class Sudoku {
vector<Posibles> _celdas;
static vector< vector<int> > _grupo, _vecinos, _grupos_de;
bool elimina(int k, int val);
public:
Sudoku(string s);
static void inicializa();
Posibles posibles(int k) const { return _celdas[k]; }
bool resuelto() const;
bool asigna(int k, int val);
int menos_posibilidades() const;
void escribe(ostream& o) const;
};
bool Sudoku::resuelto() const {
for (int k = 0; k < _celdas.size(); k++) {
if (_celdas[k].num_activos() != 1) {
return false;
}
}
return true;
}
void Sudoku::escribe(ostream& o) const {
int ancho = 1;
for (int k = 0; k < _celdas.size(); k++) {
ancho = max(ancho, 1 + _celdas[k].num_activos());
}
const string sep(3 * ancho, '-');
for (int i = 0; i < 9; i++) {
if (i == 3 || i == 6) {
o << sep << "+-" << sep << "+" << sep << endl;
}
for (int j = 0; j < 9; j++) {
if (j == 3 || j == 6) o << "| ";
o << _celdas[i*9 + j].str(ancho);
}
o << endl;
}
}
vector< vector<int> > Sudoku::_grupo(27), Sudoku::_vecinos(81), Sudoku::_grupos_de(81);
void Sudoku::inicializa() {
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
const int k = i*9 + j;
const int x[3] = {i, 9 + j, 18 + (i/3)*3 + j/3};
for (int g = 0; g < 3; g++) {
_grupo[x[g]].push_back(k);
_grupos_de[k].push_back(x[g]);
}
}
}
for (int k = 0; k < _vecinos.size(); k++) {
for (int x = 0; x < _grupos_de[k].size(); x++) {
for (int j = 0; j < 9; j++) {
int k2 = _grupo[_grupos_de[k][x]][j];
if (k2 != k) _vecinos[k].push_back(k2);
}
}
}
}
bool Sudoku::asigna(int k, int val) {
for (int i = 1; i <= 9; i++) {
if (i != val) {
if (!elimina(k, i)) return false;
}
}
return true;
}
bool Sudoku::elimina(int k, int val) {
if (!_celdas[k].activo(val)) {
return true;
}
_celdas[k].elimina(val);
const int N = _celdas[k].num_activos();
if (N == 0) {
return false;
} else if (N == 1) {
const int v = _celdas[k].val();
for (int i = 0; i < _vecinos[k].size(); i++) {
if (!elimina(_vecinos[k][i], v)) return false;
}
}
for (int i = 0; i < _grupos_de[k].size(); i++) {
const int x = _grupos_de[k][i];
int n = 0, ks;
for (int j = 0; j < 9; j++) {
const int p = _grupo[x][j];
if (_celdas[p].activo(val)) {
n++, ks = p;
}
}
if (n == 0) {
return false;
} else if (n == 1) {
if (!asigna(ks, val)) {
return false;
}
}
}
return true;
}
int Sudoku::menos_posibilidades() const {
int k = -1, min;
for (int i = 0; i < _celdas.size(); i++) {
const int m = _celdas[i].num_activos();
if (m > 1 && (k == -1 || m < min)) {
min = m, k = i;
}
}
return k;
}
Sudoku::Sudoku(string s)
: _celdas(81)
{
int k = 0;
for (int i = 0; i < s.size(); i++) {
if (s[i] >= '1' && s[i] <= '9') {
if (!asigna(k, s[i] - '0')) {
cerr << "error" << endl;
return;
}
k++;
} else if (s[i] == '0' || s[i] == '.') {
k++;
}
}
}
Sudoku* soluciona(Sudoku *S) {
if (S == NULL || S->resuelto()) {
return S;
}
int k = S->menos_posibilidades();
Posibles p = S->posibles(k);
for (int i = 1; i <= 9; i++) {
if (p.activo(i)) {
Sudoku *S1 = new Sudoku(*S);
if (S1->asigna(k, i)) {
Sudoku *S2 = soluciona(S1);
if (S2 != NULL) {
if (S2 != S1) delete S1;
return S2;
}
}
delete S1;
}
}
return NULL;
}
int main() {
Sudoku::inicializa();
string linea;
while (getline(cin, linea)) {
Sudoku* S = soluciona(new Sudoku(linea));
if (S != NULL) {
S->escribe(cout);
} else {
cout << "No hay solución";
}
delete S;
cout << endl;
}
}