- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个骑士巡回赛问题的解决方案,使用启发式方法来评估潜在的 Action ,并选择“最困难”的一个。我遇到一个问题,它完成了第四步,然后不会向前或向后移动到不同的 Action 。它到达的最远距离是:
1 -1 -1 -1 -1
-1 -1 -1 -1 -1
-1 2 -1 -1 -1
-1 -1 -1 -1 4
-1 -1 3 -1 -1
我现在正在开发 5 x 5 开发板,然后最终升级到 8 x 8。我只是想先看看它在小范围内发挥作用。我知道有一些有效的举动,我只是不确定是否是启发式比较出了问题,或者是否完全是我没有看到的其他东西。
package csne2;
import java.util.Scanner;
public class KnightsTour
{
private final static int BOARD_LENGTH = 5; //The length of the board
private final static int MAX_MOVES = BOARD_LENGTH * BOARD_LENGTH;
private static int board[][]; //The simulated board
private static int[][] hueristic = new int[][]
{
{2, 3, 4, 3, 2},
{3, 4, 6, 4, 3},
{4, 6, 8, 6, 4},
{3, 4, 6, 4, 3},
{2, 3, 4, 3, 2}
};
//List of possible moves for the knight
private final static int xMove[] = { 2, 1, -1, -2, -2, -1, 1, 2 };
private final static int yMove[] = { 1, 2, 2, 1, -1, -2, -2, -1 };
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.printf("Enter starting row (0-7): ");
int row = in.nextInt();
System.out.printf("Enter starting column (0-7): ");
int col = in.nextInt();
solveTour(row, col);
in.close();
}
/**
* Helper method to determine if a square is safe for the knight
*
* @param row the row the knight is on
* @param col the column the knight is on
* @return true if the square is safe for the knight
*/
private static boolean isSafe(int row, int col)
{
return ((row >= 0 && row < BOARD_LENGTH)
&& (col >= 0 && col < BOARD_LENGTH)
&& (board[row][col] == -1));
}
/**
* Helper method to print the tour solution to the console
*/
private static void printTour()
{
for (int r = 0; r < BOARD_LENGTH; r++)
{
for (int c = 0; c < BOARD_LENGTH; c++)
{
System.out.print(board[r][c] + " ");
}
System.out.printf("\n");
}
}
/**
* Solves the knight's tour using backtracking
*
* @param sRow the starting row
* @param sCol the starting column
*/
public static void solveTour(int sRow, int sCol)
{
initializeBoard();
board[sRow][sCol] = 1;
if (solveTour(sRow, sCol, 2))
{
printTour();
}
else
{
System.out.printf("No Solution!%n");
printTour();
}
}
private static void initializeBoard()
{
board = new int[BOARD_LENGTH][BOARD_LENGTH];
//Make all of board -1 because have not visited any square
for (int r = 0; r < BOARD_LENGTH; r++)
{
for (int c = 0; c < BOARD_LENGTH; c++)
{
board[r][c] = -1;
}
}
}
/**
* Helper method that solve the tour
*
* @param row the current row
* @param col the current column
* @param kthMove the current move
* @return true if there is a solution to the knight's tour
*/
private static boolean solveTour(int row, int col, int kthMove)
{
//Base case
int nextRow = row;
int nextCol = col;
if(kthMove > MAX_MOVES)
{
return true;
}
int[] possXMoves = new int[5];
int[] possYMoves = new int[5];
int nextMove = 7;
for(int i = 0; i < MAX_MOVES; i++)
{
for (int j = 0; j < xMove.length; j++)
{
if(isSafe(row + xMove[j], col + yMove[j]))
{
possXMoves[j] = row + xMove[j];
possYMoves[j] = col + yMove[j];
}
else
{
possXMoves[j] = row;
possYMoves[j] = col;
}
}
for(int k = 0; k < 8; k++)
{
if(nextMove > hueristic[possXMoves[j]][possYMoves[j]])
{
if(isSafe(possXMoves[j], possYMoves[j]))
{
nextMove = hueristic[possXMoves[j]][possYMoves[j]];
nextRow = possXMoves[j];
nextCol = possYMoves[j];
}
}
}
hueristic[nextRow][nextCol] = 7;
if(isSafe(nextRow, nextCol))
{
board[nextRow][nextCol] = kthMove;
if (solveTour(nextRow, nextCol, kthMove + 1 ))
{
return true;
}
else
{
board[nextRow][nextCol] = -1;
heuristic[nextRow][nextCol] = nextMove;
}
}
}
return false;
}
}
编辑:最终工作代码
package csne2;
import java.util.Scanner;
public class KnightsTour
{
private final static int BOARD_LENGTH = 5; //The length of the board
private final static int MAX_MOVES = BOARD_LENGTH * BOARD_LENGTH;
private static int board[][]; //The simulated board
private static int[][] hueristic = new int[][]
{
{2, 3, 4, 3, 2},
{3, 4, 6, 4, 3},
{4, 6, 8, 6, 4},
{3, 4, 6, 4, 3},
{2, 3, 4, 3, 2}
};
private static int highestHeuristicNumPlusOne = 9;
//List of possible moves for the knight
private final static int xMove[] = { 2, 1, -1, -2, -2, -1, 1, 2 };
private final static int yMove[] = { 1, 2, 2, 1, -1, -2, -2, -1 };
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.printf("Enter starting row (0-7): ");
int row = in.nextInt();
System.out.printf("Enter starting column (0-7): ");
int col = in.nextInt();
solveTour(row, col);
in.close();
}
/**
* Helper method to determine if a square is safe for the knight
*
* @param row the row the knight is on
* @param col the column the knight is on
* @return true if the square is safe for the knight
*/
private static boolean isSafe(int row, int col)
{
return ((row >= 0 && row < BOARD_LENGTH)
&& (col >= 0 && col < BOARD_LENGTH)
&& (board[row][col] == -1));
}
/**
* Helper method to print the tour solution to the console
*/
private static void printTour()
{
for (int r = 0; r < BOARD_LENGTH; r++)
{
for (int c = 0; c < BOARD_LENGTH; c++)
{
System.out.print(board[r][c] + " ");
}
System.out.printf("\n");
}
}
/**
* Solves the knight's tour using backtracking
*
* @param sRow the starting row
* @param sCol the starting column
*/
public static void solveTour(int sRow, int sCol)
{
initializeBoard();
board[sRow][sCol] = 1;
if (solveTour(sRow, sCol, 2))
{
printTour();
}
else
{
System.out.printf("No Solution!%n");
printTour();
}
}
private static void initializeBoard()
{
board = new int[BOARD_LENGTH][BOARD_LENGTH];
//Make all of board -1 because have not visited any square
for (int r = 0; r < BOARD_LENGTH; r++)
{
for (int c = 0; c < BOARD_LENGTH; c++)
{
board[r][c] = -1;
}
}
}
/**
* Helper method that solve the tour
*
* @param row the current row
* @param col the current column
* @param kthMove the current move
* @return true if there is a solution to the knight's tour
*/
private static boolean solveTour(int row, int col, int kthMove)
{
//Base case
int nextRow = row;
int nextCol = col;
if(kthMove > MAX_MOVES)
{
return true;
}
int[] possXMoves = new int[xMove.length];
int[] possYMoves = new int[yMove.length];
int nextMove = highestHeuristicNumPlusOne;
for(int i = 0; i < MAX_MOVES; i++)
{
for (int j = 0; j < xMove.length; j++)
{
if(isSafe(row + xMove[j], col + yMove[j]))
{
possXMoves[j] = row + xMove[j];
possYMoves[j] = col + yMove[j];
}
else
{
possXMoves[j] = row;
possYMoves[j] = col;
}
if(nextMove > hueristic[possXMoves[j]][possYMoves[j]])
{
if(isSafe(possXMoves[j], possYMoves[j]))
{
nextMove = hueristic[possXMoves[j]][possYMoves[j]];
nextRow = possXMoves[j];
nextCol = possYMoves[j];
}
}
}
if(isSafe(nextRow, nextCol))
{
board[nextRow][nextCol] = kthMove;
if (solveTour(nextRow, nextCol, kthMove + 1 ))
{
return true;
}
else
{
board[nextRow][nextCol] = -1;
}
}
}
return false;
}
}
感谢所有帮助,我会尽力澄清向我提出的任何问题。
最佳答案
solveTour
方法存在很多问题
关于java - 骑士巡回赛不会超过第四步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29861485/
我使用这个 cmd 应用程序 https://github.com/tokland/youtube-upload 上传 50 个视频后,我收到此错误: [RequestError] Server re
尝试将 docker 容器提交到镜像时出现错误: [root@dockerregistry /]# docker commit da4180ab1536 dockerregistry:5000/myi
我只是想知道这样做会更好吗: if((fd = open(filename, O_RDWR)) == -1) { fprintf(stderr, "open [ %s ]\n", strerror(e
我在我的开发机器(单个笔记本)中使用 Elasticsearch 1.4.4。一切都设置为默认值,因为我从未更改过任何设置。 当我启动它时,我通常会收到以下消息: [2015-10-27 09:38:
我收到错误 Lock wait timeout exceeded;尝试重新启动事务。这是什么原因,如何解决?仅供引用:MySQL 配置文件中的 innodb_lock_wait_timeout = 1
我对 Slack 中的 block 功能有疑问。有人设法构建 3 列而不是 2 列吗? 我凭直觉尝试了以下代码,但它不起作用: { "blocks": [ {
div 中的内容超过由 css 决定的固定大小。 #fixeddiv { position: fixed; margin: auto; max-height: 300px
我想将 EditText 字段限制为 150 个字符,我可以很容易地做到这一点。但是,当用户试图超过该限制时,我还需要通过键入(即第 151 个字符)或粘贴超过 150 个字符来提醒用户。 解决这个问
我目前正在使用此代码并排记录两个窗口: ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title=""
我在几个包含长字符串的单元格上使用嵌套的 SUBSTITUE 函数,并定期更新 SUBSTITUE fx,这导致我将其复制并粘贴到所有需要它的单元格中。问题是,我的 SUBSTITUTE 列表会随着时
我创建了一个标题 div,如下所示:
Here is the demo link 您怎么看,页面中只有 8 个广告可见,但我有 14 个广告。我已阅读有关广告限制的信息 here但不明白是不是我的情况?有人可以给我确切的答案,为什么我看不
我的非常简单的算法 - C 中的快速排序有问题。它非常有效(随机化大约 0.1 秒并检查列表是否已排序)但是当我想要对超过 500k 的元素进行排序时它会崩溃。不幸的是,我需要对它们进行更多排序,因为
我成功解决了一个关于 Hackerrank 的问题,它通过了所有测试用例,但我得到了一个错误,超过了时间限制。我猜如果我优化我的代码它会工作,但我想不出任何方法来使我的代码更有效率。 问题是: 对大小
你会如何用 包围下面的文字3 个反引号 ```使用 tpope 的 Vim Surround . 我所能做的就是 1 个反引号 使用 S`在视觉模式下: 最佳答案 这不是你问的,但这可以在没有环绕的情
我目前有一个模拟账户。我正在尝试为我的雇主使用 SwifType 制作 POC。我们有一个非常大的数据库,每 1 小时索引一次,并创建一个 JSON 文件。我认为与 Elastic 的集成将非常容易,
我为一个大约有 100 到 120 名成员的小型组织维护网站。 每个月,我们都会发送一封电子邮件,通知我们的成员我们将在即将举行的 session 中讨论的主题。 我正在尝试使用我们的网站为我们提供一
这个问题已经有答案了: How to automatically input an array formula as string with more than 255 characters in l
我有一个在 JBoss 6.1 中运行的 JSF 应用程序,它使用内部Tomcat Servlet 容器。 我已经通过apache commons文件上传实现了上传。我想防止上传过大的文件并设置了属性
当我尝试在 PyMySQL 上执行查询时,出现以下错误: pymysql.err.InternalError: (1205, 'Lock wait timeout exceeded; try rest
我是一名优秀的程序员,十分优秀!