-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
115 lines (104 loc) · 3.62 KB
/
Program.cs
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
using Google.OrTools.Sat;
namespace SudokuSolver
{
internal static class Program
{
private static T[] GetColumn<T>(this T[,] matrix, int columnNumber)
{
return Enumerable.Range(0, matrix.GetLength(0))
.Select(x => matrix[x, columnNumber])
.ToArray();
}
private static T[] GetRow<T>(this T[,] matrix, int rowNumber)
{
return Enumerable.Range(0, matrix.GetLength(1))
.Select(x => matrix[rowNumber, x])
.ToArray();
}
private static void PrintPuzzle(CpSolver solver, IntVar[,] grid)
{
for (int i = 0; i < 9; i++)
{
if (i != 0 && i % 3 == 0)
{
// Print a horizontal line every 3 rows
Console.WriteLine(new string('-', 21));
}
for (int j = 0; j < 9; j++)
{
if (j != 0 && j % 3 == 0)
{
// Print a vertical line every 3 columns
Console.Write("| ");
}
Console.Write($"{solver.Value(grid[i, j])} ");
}
Console.WriteLine();
}
}
static void Main(string[] args)
{
int[,] puzzle =
{
{ 0, 0, 6, 5, 1, 0, 0, 0, 8 },
{ 7, 0, 3, 8, 0, 0, 6, 9, 1 },
{ 2, 0, 0, 0, 3, 0, 5, 4, 7 },
{ 0, 0, 1, 7, 0, 0, 0, 8, 0 },
{ 6, 0, 0, 3, 0, 1, 7, 5, 0 },
{ 8, 0, 7, 4, 5, 0, 3, 1, 0 },
{ 0, 8, 5, 6, 0, 0, 9, 0, 0 },
{ 9, 0, 0, 0, 0, 5, 0, 7, 0 },
{ 0, 7, 4, 0, 0, 0, 0, 0, 0 }
};
CpModel model = new CpModel();
IntVar[,] grid = new IntVar[9, 9];
// Load the puzzle into the model
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
if (puzzle[i, j] == 0)
{
grid[i, j] = model.NewIntVar(1, 9, $"cell_{i}_{j}");
}
else
{
grid[i, j] = model.NewConstant(puzzle[i, j]);
}
}
}
// Add rows and columns must be unique constraints
for (int i = 0; i < 9; i++)
{
model.AddAllDifferent(grid.GetRow(i));
model.AddAllDifferent(grid.GetColumn(i));
}
// Add 3x3 square must be unique constraints
for (int i = 0; i < 9; i += 3)
{
for (int j = 0; j < 9; j += 3)
{
IntVar[] square = new IntVar[9];
for (int k = 0; k < 3; k++)
{
for (int l = 0; l < 3; l++)
{
square[k * 3 + l] = grid[i + k, j + l];
}
}
model.AddAllDifferent(square);
}
}
CpSolver solver = new CpSolver();
CpSolverStatus status = solver.Solve(model);
if (status == CpSolverStatus.Optimal || status == CpSolverStatus.Feasible)
{
PrintPuzzle(solver, grid);
}
else
{
Console.WriteLine("No solution found.");
}
}
}
}