我试图解决数独作为家庭作业的约束满足问题。我已经为特定行中的所有元素以及列构建了约束。我正在尝试为子区域中的元素构造约束条件,并且我遇到了一些麻烦。
我当前算法背后的一般思路是将子区域中的所有变量(例如,9x9网格的3x3框)添加到列表中,然后置换该列表中的所有值以构造NotEqualConstraints每个变量之间。下面的代码适用于NxN网格的第一个子区域,但我不知道如何更改它以迭代整个网格的其余部分。
int incSize = (int)Math.sqrt(svars.length);
ArrayList<Variable> subBox = new ArrayList<Variable>();
for (int ind = 0; ind < incSize; ind++) {
for (int ind2 = 0; ind2 < incSize; ind2++) {
subBox.add(svars[ind][ind2]);
}
}
for (int i = 0; i < subBox.size(); i++) {
for (int j = i + 1; j < subBox.size(); j++) {
NotEqualConstraint row = new NotEqualConstraint(subBox.get(i), subBox.get(j));
constraints.add(row);
}
}
任何人都可以指导我如何修改代码以触及每个子区域而不仅仅是左上角的方向吗?
编辑:我也愿意尝试任何有效的算法,没有必要为每个子区域的ArrayList添加所有值。如果您看到更好的方式,请分享见解
答案 0 :(得分:3)
以下是我提出的工作解决方案,对于那些感兴趣的人:
for (int ofs = 0; ofs < svars.length; ofs++) {
int col = (ofs % incSize) * incSize;
int row = ((int)(ofs / incSize)) * incSize;
ArrayList<Variable> subBox = new ArrayList<Variable>();
for (int ind = row; ind < row+incSize; ind++) {
for (int ind2 = col; ind2 < col+incSize; ind2++) {
subBox.add(svars[ind][ind2]);
}
}
for (int i = 0; i < subBox.size(); i++) {
for (int j = i + 1; j < subBox.size(); j++) {
NotEqualConstraint c = new NotEqualConstraint(subBox.get(i), subBox.get(j));
constraints.add(c);
}
}
}
答案 1 :(得分:1)
我不完全确定你要做什么,但下面的算法应该为你提供你需要的每一个价值。您可以忽略和/或删除不需要的值。您可以在拥有所有数字的位置适当地填充所有数组。
我使用的词语:
代码:
//You should have these values at this point:
int subRegionWidth = something; //amount of horizontal squares in a subregion
int subRegionHeight = something; //amount of vertical squares in a subregion
int amountOfHorizontalSubRegions = something; //amount of subRegion columns next to each other
int amountOfVerticalSubRegions = something; //amount of subregion rows on top of each other
//Doesn't change, so calculated once in advance:
int squaresPerPuzzleRow = subRegionWidth*amountOfHorizontalSubRegions;
//Variables to use inside the loop:
int subRegionIndex = 0;
int squareColumnInPuzzle;
int squareRowInPuzzle;
int squareIndexInPuzzle;
int squareIndexInSubRegion;
for(int subRegionRow=0; subRegionRow<amountOfVerticalSubRegions;subRegionRow++)
{
for(int subRegionColumn=0; subRegionColumn<amountOfHorizontalSubRegions;subRegionColumn++)
{
for(int squareRowInRegion=0; squareRowInRegion<subRegionHeight; squareRowInRegion++)
{
for(int squareColumnInRegion=0; squareColumnInRegion<subRegionWidth; squareColumnInRegion++)
{
squareColumnInPuzzle = subRegionColumn*subRegionWidth + squareColumnInRegion;
squareRowInPuzzle = subRegionRow*subRegionHeight + squareRowInRegion;
squareIndexInPuzzle = squareRowInPuzzle*squaresPerPuzzleRow + squareColumnInPuzzle;
squareIndexInSubRegion = squareRowInRegion*subRegionWidth + squareColumnInRegion;
//You now have all the information of a square:
//The subregion's row (subRegionRow)
//The subregion's column (subRegionColumn)
//The subregion's index (subRegionIndex)
//The square's row within the puzzle (squareRowInPuzzle)
//The square's column within the puzzle (squareColumnInPuzzle)
//The square's index within the puzzle (squareIndexInPuzzle)
//The square's row within the subregion (squareRowInSubRegion)
//The square's column within the subregion (squareColumnInSubRegion)
//The square's index within the subregion (squareIndexInSubRegion)
//You'll get this once for all squares, add the code to do something with it here.
}
}
subRegionIndex++;
}
}
如果你只需要每个子区域的左上方,只需删除内部的两个循环:
for(int subRegionRow=0; subRegionRow<amountOfVerticalSubRegions;subRegionRow++)
{
for(int subRegionColumn=0; subRegionColumn<amountOfHorizontalSubRegions;subRegionColumn++)
{
squareColumnInPuzzle = subRegionColumn*subRegionWidth;
squareRowInPuzzle = subRegionRow*subRegionHeight;
squareIndexInPuzzle = squareRowInPuzzle*squaresPerPuzzleRow + squareColumnInPuzzle;
//You now have all the information of a top left square:
//The subregion's row (subRegionRow)
//The subregion's column (subRegionColumn)
//The subregion's index (subRegionIndex)
//The square's row within the puzzle (squareRowInPuzzle)
//The square's column within the puzzle (squareColumnInPuzzle)
//The square's index within the puzzle (squareIndexInPuzzle)
//The square's row within the subregion (always 0)
//The square's column within the subregion (always 0)
//The square's index within the subregion (always 0)
//You'll get this once for all squares, add the code to do something with it here.
subRegionIndex++;
}
}
答案 2 :(得分:0)
for (int start1 = start1; start1 < svars.length/incSize; start1 ++) {
for (int start2 = start2; start2 < svars.length/incSize; start2++) {//iterate through all subsets
ArrayList<Variable> subBox = new ArrayList<Variable>();
for (int ind = start1*incSize; ind < incSize; ind++) {
for (int ind2 = start2*incSize; ind2 < incSize; ind2++) {
subBox.add(svars[ind][ind2]);
}
}
for (int i = 0; i < subBox.size(); i++) {
for (int j = i + 1; j < subBox.size(); j++) {
NotEqualConstraint row = new NotEqualConstraint(subBox.get(i), subBox.get(j));
constraints.add(row);
}
}
}
}
答案 3 :(得分:-2)
我并不完全明白你要做什么,但是如果你正在尝试解决这个难题,你只需要一个递归方法,它将填入数字直到它填满所有网格并且拼图是有效的。这是我的解决方案对于futoshiki拼图解算器(类似于数独)