N-Queens

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.."]
]

Have you been asked this question in an interview? 

用排列方法
n-queens 问题说它是dp, 因为position i 的位置 是通过 position[0,,,i-1] 来决定的

public class Solution {
    public List<String[]> solveNQueens(int n) {
        if (n < 0) {
            return null;
        }
        List<String[]> results = new ArrayList<String[]>();
        int[] position = new int[n];
        placeQueens(n, position, 0, results);
        return results;
    }
    private void placeQueens(int n, int[] position, int row, List<String[]> results) {
        if (row == n) {
            printQueens(n, position, results);
            return;
        }
        for (int i = 0; i < n; i++) {
            position[row] = i;
            if (isValide(position, row)) {
                placeQueens(n, position, row + 1, results);
            } 
            position[row] = 0;
        }
    }
    private boolean isValide(int[] position, int last) {
        for (int i = 0; i < last; i++) {
            if (position[i] == position[last]) {
                return false;
            } 
            if ((last - i) == Math.abs(position[last] - position[i])) {
                return false;
            }
        }
        return true;
    }
    private void printQueens(int n, int[] position, List<String[]> results){
        String[] result = new String[n];
        for (int i = 0; i < n; i++) {
            StringBuilder sb = new StringBuilder();
            for (int j = 0; j < n; j++) {
                if (j == position[i]) {
                    sb.append('Q');
                } else {
                    sb.append('.');
                }
            }
            result[i] = sb.toString();
        }
        results.add(result);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值