-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathSudoku_Problem.cpp
118 lines (104 loc) · 2.62 KB
/
Sudoku_Problem.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
#include <bits/stdc++.h>
using namespace std;
#define N 9
bool isSafe(int board[N][N],int row, int col, int num)
{
for (int d = 0; d < N; d++)
{
if (board[row][d] == num) {
return false;
}
}
for (int r = 0; r < N; r++)
{
if (board[r][col] == num)
{
return false;
}
}
int s = (int)sqrt(N);
int boxRowStart = row - row % s;
int boxColStart = col - col % s;
for (int r = boxRowStart;
r < boxRowStart + s; r++)
{
for (int d = boxColStart;
d < boxColStart + s; d++)
{
if (board[r][d] == num)
{
return false;
}
}
}
return true;
}
bool solve(int board[N][N],int n)
{
int row = -1;
int col = -1;
bool isEmpty = true;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (board[i][j] == 0)
{
row = i;
col = j;
isEmpty = false;
break;
}
}
if (!isEmpty) {
break;
}
}
if (isEmpty)
{
return true;
}
for (int num = 1; num <= n; num++)
{
if (isSafe(board, row, col, num))
{
board[row][col] = num;
if (solve(board, n))
{
// print(board, n);
return true;
}
else
{
board[row][col] = 0;
}
}
}
return false;
}
void printGrid(int grid[N][N])
{
for (int row = 0; row < N; row++)
{
for (int col = 0; col < N; col++)
cout << grid[row][col] << " ";
cout << endl;
}
}
int main()
{
int grid[N][N] = { { 3, 0, 6, 5, 0, 8, 4, 0, 0 }, //Example input
{ 5, 2, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 8, 7, 0, 0, 0, 0, 3, 1 },
{ 0, 0, 3, 0, 1, 0, 0, 8, 0 },
{ 9, 0, 0, 8, 6, 3, 0, 0, 5 },
{ 0, 5, 0, 0, 9, 0, 6, 0, 0 },
{ 1, 3, 0, 0, 0, 0, 2, 5, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 7, 4 },
{ 0, 0, 5, 2, 0, 6, 3, 0, 0 } };
if (solve(grid,N) == true)
printGrid(grid);
else
cout << "No solution exists";
return 0;
}