-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolver.cpp
157 lines (130 loc) · 3.17 KB
/
solver.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
#include <iostream>
#include <string>
#include <vector>
#include <tuple>
#include <chrono>
using namespace std;
class Board {
private:
const int size = 9;
int board[9][9];
int index_x = 1;
int possible[9] = {9,9,9,9,9,9,9,9,9};
public:
Board(int _board[9][9] ){
for(int i = 0; i < size; ++i){
for(int j = 0; j < size; ++j){
board[i][j] = _board[i][j];
board[i][j] != 0 ? --possible[board[i][j]-1] : 0;
}
}
}
tuple<int, int, bool> findEmptyCell(){
for(int row = 0; row < size; ++row){
for(int col = 0; col < size; ++col){
if(board[row][col] == 0){
return make_tuple(row, col, true);
}
}
}
return make_tuple(0, 0, false);
}
bool backtracking(){
auto x = findEmptyCell();
int nRow = get<0>(x);
int nCol = get<1>(x);
bool hasEmptySpots = get<2>(x);
if(!hasEmptySpots){
return true;
}
for(int i = 0; i < 9 ; ++i){
if(possible[i] == 0){
continue;
}
if(isValid(nRow, nCol, i+1)){
board[nRow][nCol] = i+1;
--possible[i];
if(backtracking()){
return true;
}
board[nRow][nCol] = 0;
++possible[i];
}
}
return false;
}
constexpr bool isValid(int row, int col, int num){
int fromRow = row / 3 * 3;
int fromCol = col / 3 * 3;
for(int i = 0; i < 9; ++i){
if(board[row][i] == num ||
board[i][col] == num ||
board[fromRow+i/3][fromCol+i%3] == num){
return false;
}
}
return true;
}
void print(){
for(int i = 0; i < size; ++i){
for(int j = 0; j < size; ++j){
cout << board[i][j] << ' ';
}
cout << '\n';
}
cout << "-----------------\n";
}
void string(){
for(int i = 0; i < size; ++i){
for(int j = 0; j < size; ++j){
cout << board[i][j];
}
}
cout << '\n';
}
};
int main(){
auto start = chrono::steady_clock::now();
vector<vector<int>> tmp_sudoku;
int b[9][9];
string line;
// ------FORMAT-------
// 0 for blank row or number 1-9 (no delimiter)
// SUDOKUS are separated by newline.
// Load board from cin.
// for example in shell ./solver < puzzles.txt
long long int lines = 0;
while(cin >> line){
++lines;
if(line.size() != 81){
cerr << "Bad input\n";
return -1;
}
vector<int> tmp;
int index = 0;
for(auto number : line){
tmp.push_back(number - '0');
++index;
if(index == 9){
index = 0;
tmp_sudoku.push_back(tmp);
tmp.clear();
}
}
for(int i = 0; i < 9; ++i){
for(int j = 0; j < 9; ++j){
b[i][j] = tmp_sudoku[i][j];
}
}
tmp_sudoku.clear();
Board board(b);
if(board.backtracking()){
board.string();
}
else{
cout << "Not successfull\n";
}
}
auto end = chrono::steady_clock::now();
cerr << "Solved: " << lines << " sudokus, in " << chrono::duration_cast<chrono::milliseconds>(end - start).count() << " milliseconds" << '\n';
}