摘要:暴力法复杂度时间空间思路因为皇后问题中,同一列不可能有两个皇后,所以我们可以用一个一维数组来表示二维棋盘上皇后的位置。一维数组中每一个值的下标代表着对应棋盘的列,每一个值则是那一列中皇后所在的行。
N-Queens I
暴力法 复杂度The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
Given an integer n, return all distinct solutions to the n-queens puzzle.
Each solution contains a distinct board configuration of the n-queens" placement, where "Q" and "." both indicate a queen and an empty space respectively.
For example, There exist two distinct solutions to the 4-queens puzzle:
[ [".Q..", // Solution 1 "...Q", "Q...", "..Q."], ["..Q.", // Solution 2 "Q...", "...Q", ".Q.."] ]
时间 O(N^3) 空间 O(N)
思路因为n皇后问题中,同一列不可能有两个皇后,所以我们可以用一个一维数组来表示二维棋盘上皇后的位置。一维数组中每一个值的下标代表着对应棋盘的列,每一个值则是那一列中皇后所在的行。这样我们可以只对一个一维数组进行深度优先搜索,来找出对于每一列,我们的皇后应该放在哪一行。在下一轮搜索之前,我们先检查一下新构成的数组是否是有效的,这样可以剪掉不必要的分支。检查的方法则是看之前排好的每一个皇后是否冲突。
代码public class Solution { List集合法 复杂度> res; public List
> solveNQueens(int n) { res = new LinkedList
>(); int[] nqueens = new int[n]; helper(nqueens, n, 0); return res; } public void helper(int[] nqueens, int n, int i){ if(i == nqueens.length){ List
one = new LinkedList (); // 构成表示整个棋盘的字符串 for(int num : nqueens){ // 构成一个形如....Q....的字符串 StringBuilder sb = new StringBuilder(); for(int j = 0; j < num; j++){ sb.append("."); } sb.append("Q"); for(int j = num + 1; j < n; j++){ sb.append("."); } one.add(sb.toString()); } res.add(one); } else { //选择下一列的数字 // 比如之前已经选了13xxxxxx,下一列可以选6,形成136xxxxx for(int num = 0; num < n; num++){ nqueens[i] = num; // 如果是有效的,继续搜索 if(isValid(nqueens, i)){ helper(nqueens, n, i+1); } } } } private boolean isValid(int[] nqueens, int i){ for(int idx = 0; idx < i; idx++){ // 检查对角线只要判断他们差的绝对值和坐标的差是否相等就行了 if(nqueens[idx] == nqueens[i] || Math.abs(nqueens[idx] - nqueens[i]) == i - idx){ return false; } } return true; } }
时间 O(N^2) 空间 O(N)
思路该方法的思路和暴力法一样,区别在于,之前我们判断一个皇后是否冲突,是遍历一遍当前皇后排列的列表,看每一个皇后是否冲突。这里,我们用三个集合来保存之前皇后的信息,就可以O(1)时间判断出皇后是否冲突。三个集合分别是行集合,用于存放有哪些行被占了,主对角线集合,用于存放哪个右上到左下的对角线被占了,副对角线集合,用于存放哪个左上到右下的对角线被占了。如何唯一的判断某个点所在的主对角线和副对角线呢?我们发现,两个点的行号加列号的和相同,则两个点在同一条主对角线上。两个点的行号减列号的差相同,则两个点再同一条副对角线上。
注意主对角线row + col,副对角线row - col
代码public class Solution { ListN-Queens II> res = new LinkedList
>();; Set
rowSet = new HashSet (); Set diag1Set = new HashSet (); Set diag2Set = new HashSet (); public List > solveNQueens(int n) { helper(new LinkedList
(), n, 0); return res; } public void helper(LinkedList tmp, int n, int col){ if(col == n){ List one = new LinkedList (); for(Integer num : tmp){ StringBuilder sb = new StringBuilder(); for(int j = 0; j < num; j++){ sb.append("."); } sb.append("Q"); for(int j = num + 1; j < n; j++){ sb.append("."); } one.add(sb.toString()); } res.add(one); } else { // 对于列col,看皇后应该放在第几行 for(int row = 0; row < n; row++){ int diag1 = row + col; int diag2 = row - col; // 如果三条线上已经有占据的皇后了,则跳过该种摆法 if(rowSet.contains(row) || diag1Set.contains(diag1) || diag2Set.contains(diag2)){ continue; } // 用回溯法递归求解 tmp.add(row); rowSet.add(row); diag1Set.add(diag1); diag2Set.add(diag2); helper(tmp, n, col + 1); diag2Set.remove(diag2); diag1Set.remove(diag1); rowSet.remove(row); tmp.removeLast(); } } } }
暴力法 复杂度Follow up for N-Queens problem.
Now, instead outputting board configurations, return the total number of distinct solutions.
时间 O(N^3) 空间 O(N)
思路跟I的解法一样,只不过把原本构造字符串的地方换成了计数器加一。
代码public class Solution { List集合法 复杂度> res; int cnt = 0; public int totalNQueens(int n) { int[] nqueens = new int[n]; helper(nqueens, n, 0); return cnt; } public void helper(int[] nqueens, int n, int i){ if(i == nqueens.length){ cnt++; } else { for(int num = 0; num < n; num++){ nqueens[i] = num; if(isValid(nqueens, i)){ helper(nqueens, n, i+1); } } } } private boolean isValid(int[] nqueens, int i){ for(int idx = 0; idx < i; idx++){ if(nqueens[idx] == nqueens[i] || Math.abs(nqueens[idx] - nqueens[i]) == i - idx){ return false; } } return true; } }
时间 O(N^2) 空间 O(N)
思路跟I的解法一样,只不过把原本构造字符串的地方换成了计数器加一。
代码public class Solution { SetrowSet = new HashSet (); Set diag1Set = new HashSet (); Set diag2Set = new HashSet (); int cnt = 0; public int totalNQueens(int n) { helper(n, 0); return cnt; } public void helper(int n, int col){ if(col == n){ cnt++; } else { for(int row = 0; row < n; row++){ int diag1 = row + col; int diag2 = row - col; if(rowSet.contains(row) || diag1Set.contains(diag1) || diag2Set.contains(diag2)){ continue; } rowSet.add(row); diag1Set.add(diag1); diag2Set.add(diag2); helper(n, col + 1); diag2Set.remove(diag2); diag1Set.remove(diag1); rowSet.remove(row); } } } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/64535.html
摘要:题目要求这里的王后相当于国际围棋的王后,该王后一共有三种移动方式水平垂直,对角线。并将当前的临时结果作为下一轮的输入进行下一轮的预判。这里我们进行了进一步的优化,将转化为,其中数组用来记录该列是否被占领,数组用来记录该行占领了那一列。 题目要求 The n-queens puzzle is the problem of placing n queens on an n×n chessb...
Problem The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. showImg(https://segmentfault.com/img/bVQrOx?w=258&h=276); Given an intege...
摘要:分布式的管理和当我在谈论架构时我在谈啥状态码详解无状态协议和请求支持哪些方法分层协议栈有哪些数据结构运用场景说说你常用的命令为什么要有包装类面向对象的特征是啥是啥有什么好处系统设计工程在线诊断系统设计与实现索引背后的数据结构及算法原理软技能 HTTP 【HTTP】分布式session的管理 【HTTP】Cookie和Session 【HTTP】当我在谈论RestFul架构时我在谈啥?...
摘要:终止条件递推公式递归的分类通过做大量的题,根据递归解决不同的问题,引申出来的几种解决和思考的方式。我们通过层与层之间的计算关系用递推公式表达出来做计算,经过层层的递归,最终得到结果值。 showImg(https://segmentfault.com/img/remote/1460000019222330); 前言 几个月之前就想写这样一篇文章分享给大家,由于自己有心而力不足,没有把真...
摘要:关于八皇后问题的解法,总觉得是需要学习一下算法的,哪天要用到的时候发现真不会就尴尬了背景八皇后问题是一个以国际象棋为背景的问题如何能够在的国际象棋棋盘上放置八个皇后,使得任何一个皇后都无法直接吃掉其他的皇后为了达到此目的,任两个皇后都不能处 关于八皇后问题的 JavaScript 解法,总觉得是需要学习一下算法的,哪天要用到的时候发现真不会就尴尬了 背景 八皇后问题是一个以国际象棋为背...
阅读 1073·2021-11-16 11:45
阅读 3071·2021-10-13 09:40
阅读 677·2019-08-26 13:45
阅读 1139·2019-08-26 13:32
阅读 2133·2019-08-26 13:23
阅读 863·2019-08-26 12:16
阅读 2792·2019-08-26 11:37
阅读 1718·2019-08-26 10:32