-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcross.cpp
467 lines (368 loc) · 10.1 KB
/
cross.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/**
* @file cross.cpp
* @author William Weston
* @brief Cross Problem From Kattis
* @version 0.1
* @date 2023-09-16
*
* @copyright Copyright (c) 2023
*
* Link: https://open.kattis.com/problems/cross
*/
// ------------------------------------------------------------------------------------------------
#include <array>
#include <cassert>
#include <cstdlib>
#include <iostream>
#include <optional>
#include <stdexcept>
#include <string>
#include <utility>
// ------------------------------------------------------------------------------------------------
// --------------------------------------------- Solver.h -----------------------------------------
class Solver final
{
public:
Solver( std::array<std::string, 9> const& board );
auto solve() -> std::optional<std::array<std::string, 9>>;
private:
std::array<std::array<int, 9>, 9> board_;
std::array<std::array<int, 9>, 9> working_;
static constexpr inline auto CROSSED = -1;
auto cross_hatch() -> bool;
auto cross( int number ) -> void;
auto cross_row( int row ) -> void;
auto cross_col( int col ) -> void;
auto cross_block( int block ) -> void;
auto deduce( int number ) -> bool;
auto update_board( int row, int col, int number ) -> void;
auto row_duplicates() -> bool;
auto col_duplicates() -> bool;
auto block_duplicates() -> bool;
auto row_contains( int number, int row ) -> bool;
auto col_contains( int number, int col ) -> bool;
auto block_contains( int number, int block ) -> bool;
};
// ---------------------------------------- helper_functions.h ------------------------------------
auto convert_board( std::array<std::string, 9> const& board ) -> std::array<std::array<int, 9>, 9>;
auto convert_board( std::array<std::array<int, 9>, 9> const& board ) -> std::array<std::string, 9>;
auto to_char( int number ) -> char;
auto to_int( char number ) -> int;
auto block_start( int block ) -> std::pair<int, int>;
auto block_number( int row, int col ) noexcept -> int;
// -------------------------------------------- Solver.cpp ----------------------------------------
Solver::Solver( std::array<std::string, 9> const& board )
: board_{ convert_board( board ) }, working_{}
{}
auto
Solver::solve() -> std::optional<std::array<std::string, 9>>
{
// return nullopt for invalid input or when no deductions can be made
if ( row_duplicates() || col_duplicates() || block_duplicates() )
return std::nullopt;
try
{
while ( cross_hatch() ) {}
}
catch( std::runtime_error const& error )
{
std::cerr << error.what() << '\n';
return std::nullopt;
}
return convert_board( board_ );
}
auto
Solver::cross_hatch() -> bool
{
auto deduction_made = false;
for ( auto number = 1; number < 10; ++number )
{
working_ = board_;
cross( number );
if ( deduce( number ) )
deduction_made = true;
}
return deduction_made;
}
auto
Solver::cross( int const number ) -> void
{
for ( auto row = 0; row < 9; ++row )
{
for ( auto col = 0; col < 9; ++col )
{
if ( board_[row][col] == number )
{
cross_row( row );
cross_col( col );
cross_block( block_number( row, col ) );
}
}
}
}
auto
Solver::cross_row( int const row ) -> void
{
for ( auto col = 0; col < 9; ++col )
{
working_[row][col] = CROSSED;
}
}
auto
Solver::cross_col( int const col ) -> void
{
for ( auto row = 0; row < 9; ++row )
{
working_[row][col] = CROSSED;
}
}
auto
Solver::cross_block( int const block ) -> void
{
auto const [row_start, col_start] = block_start( block );
auto const row_end = row_start + 3;
auto const col_end = col_start + 3;
for ( auto row = row_start; row < row_end; ++row )
{
for ( auto col = col_start; col < col_end; ++col )
{
working_[row][col] = CROSSED;
}
}
}
auto
Solver::deduce( int const number ) -> bool
{
auto deduction_made = false;
for ( auto block = 0; block < 9; ++block )
{
if ( block_contains( number, block ) )
continue;
auto const [row_start, col_start] = block_start( block );
auto const row_end = row_start + 3;
auto const col_end = col_start + 3;
auto empties = 0;
auto row_update = 0;
auto col_update = 0;
for ( auto row = row_start; row < row_end; ++row )
{
for ( auto col = col_start; col < col_end; ++col )
{
if ( working_[row][col] == 0 )
{
++empties;
row_update = row;
col_update = col;
}
}
}
if ( empties == 0 )
throw std::runtime_error( "Contradiction detected" );
if ( empties == 1 )
{
update_board( row_update, col_update, number );
deduction_made = true;
}
}
return deduction_made;
}
auto
Solver::update_board( int const row, int const col, int const number ) -> void
{
if ( board_[row][col] != 0 )
{
std::cerr << "Update at: [" << row << ", " << col << "] = number\n";
std::cerr << "Existing value: " << board_[row][col] << '\n';
}
assert( board_[row][col] == 0 && "Contradiction in board update" );
board_[row][col] = number;
}
auto
Solver::row_duplicates() -> bool
{
for ( auto number = 1; number < 10; ++number )
{
for ( auto row = 0; row < 9; ++row )
{
auto count = 0;
for ( auto col = 0; col < 9; ++col )
{
if ( board_[row][col] == number )
++count;
}
if ( count > 1 )
return true;
}
}
return false;
}
auto
Solver::col_duplicates() -> bool
{
for ( auto number = 1; number < 10; ++number )
{
for ( auto col = 0; col < 9; ++col )
{
auto count = 0;
for ( auto row = 0; row < 9; ++row )
{
if ( board_[row][col] == number )
++count;
}
if ( count > 1 )
return true;
}
}
return false;
}
auto
Solver::block_duplicates() -> bool
{
for ( auto number = 1; number < 10; ++number )
{
for ( auto block = 0; block < 9; ++block )
{
auto count = 0;
auto const [row_start, col_start] = block_start( block );
auto const row_end = row_start + 3;
auto const col_end = col_start + 3;
for ( auto row = row_start; row < row_end; ++row )
{
for ( auto col = col_start; col < col_end; ++col )
{
if ( board_[row][col] == number )
++count;
}
}
if ( count > 1 )
return true;
}
}
return false;
}
auto
Solver::row_contains( int const number, int const row ) -> bool
{
for ( auto col = 0; col < 9; ++col )
{
if ( board_[row][col] == number )
return true;
}
return false;
}
auto
Solver::col_contains( int const number, int const col ) -> bool
{
for ( auto row = 0; row < 9; ++row )
{
if ( board_[row][col] == number )
return true;
}
return false;
}
auto
Solver::block_contains( int const number, int const block ) -> bool
{
auto const [row_start, col_start] = block_start( block );
auto const row_end = row_start + 3;
auto const col_end = col_start + 3;
for ( auto row = row_start; row < row_end; ++row )
{
for ( auto col = col_start; col < col_end; ++col )
{
if ( board_[row][col] == number )
return true;
}
}
return false;
}
// --------------------------------------- helper_functions.cpp -----------------------------------
auto
convert_board( std::array<std::string, 9> const& board ) -> std::array<std::array<int, 9>, 9>
{
auto array_board = std::array<std::array<int, 9>, 9>{ 0 }; // all zeros
for ( auto row = 0; row < 9; ++row )
{
for ( auto col = 0; col < 9; ++col )
{
if ( board[row][col] != '.' )
array_board[row][col] = to_int( board[row][col] );
}
}
return array_board;
}
auto
convert_board( std::array<std::array<int, 9>, 9> const& board ) -> std::array<std::string, 9>
{
auto string_board = std::array<std::string, 9>{};
for ( auto row = 0; row < 9; ++row )
{
for ( auto col = 0; col < 9; ++col )
{
if ( board[row][col] == 0 )
string_board[row].push_back( '.' );
else
string_board[row].push_back( to_char( board[row][col] ) );
}
}
return string_board;
}
auto
to_char( int const number ) -> char
{
return number + '0';
}
auto
to_int( char const number ) -> int
{
return number - '0';
}
auto
block_start( int const block ) -> std::pair<int, int>
{
return { ( block / 3 ) * 3, ( block % 3 ) * 3 };
}
auto
block_number( int const row, int const col ) noexcept -> int
{
return ( row / 3 ) * 3 + col / 3;
}
// ------------------------------------------------------------------------------------------------
// --------------------------------------------- main ---------------------------------------------
auto read_input() -> std::array<std::string, 9>;
auto print( std::array<std::string, 9> const& board ) -> void;
auto
main() -> int
{
auto const board = read_input();
auto solver = Solver( board );
auto const result = solver.solve();
if ( !result )
std::cout << "ERROR\n";
else
{
print( *result );
}
return EXIT_SUCCESS;
}
auto
read_input() -> std::array<std::string, 9>
{
auto board = std::array<std::string, 9>{};
for ( auto idx = 0; idx < 9; ++ idx )
{
auto line = std::string();
std::getline( std::cin, line );
board[idx] = std::move( line );
}
return board;
}
auto
print( std::array<std::string, 9> const& board ) -> void
{
for ( auto const& row : board )
{
std::cout << row << '\n';
}
}
// ------------------------------------------------------------------------------------------------