N皇后问题

题目:牛客网

解题思路:参考:链接

 由于需要在n*n的棋盘格中放入n个皇后,就必须每一行放一个

 否则就会出现一行有两个皇后的情况,会发生冲突。

 那么就可以递归的解决每一行问题

 最核心的问题是:如何能快速判断不合法的情况,即快速剪枝

 同行或同列的冲突可以简单用一个数组来考虑,难点是两条对角线

 对角线条数2*n-1

 左对角线:坐标x+y是一个唯一定值  x+y      范围为0到2*n-2

 右对角线:坐标x-y是一个唯一定值  x-y+n-1  范围为0到2*n-2

 

import java.util.ArrayList;
public class Solution {
    public  ArrayList<String[]> res;
    public  boolean[] col;//列
    public  boolean[] dia1;//左对角线
    public  boolean[] dia2;//右对角线
    public ArrayList<String[]> solveNQueens(int n) {
        res = new ArrayList<String[]>();
        if (n == 0)
            return res;
        col = new boolean[n];
        dia1 = new boolean[2 * n - 1];
        dia2 = new boolean[2 * n - 1];
        putQueen(n, 0, new ArrayList<Integer>());
        return res;
    }
    //尝试在一个n皇后问题中,摆放第index行的皇后位置,row存放的是每一行皇后存放的下标
    public void putQueen(int n, int index, ArrayList<Integer> row) {
        if (index == n) {
            res.add(generateBoard(n, row));
            return;
        }
        for (int i = 0; i < n; i++) {
            //判断能否将第index行的皇后摆放在第i列
            if (!col[i] && !dia1[index + i] && !dia2[index - i + n - 1]) {
                col[i] = true;
                dia1[index + i] = true;
                dia2[index - i + n - 1] = true;
 
                row.add(i);
                putQueen(n, index + 1, row);
                row.remove(row.size() - 1);
 
                col[i] = false;
                dia1[index + i] = false;
                dia2[index - i + n - 1] = false;
            }
        }
    }
 
    public  String[] generateBoard(int n, ArrayList<Integer> row) {
        String[] list = new String[n];
        for (int i = 0; i < n; i++) {
            StringBuilder s = new StringBuilder();
            for (int j = 0; j < n; j++) {
                if (j == row.get(i))
                    s.append("Q");
                else
                    s.append(".");
            }
            list[i] = s.toString();
        }
        return list;
    }
}

题目:牛客网

解题思路:同上,比上一题简单,只需要统计几种情况

public class Solution {
    int count;
    public int totalNQueens(int n) {
        count = 0;
        boolean col[] = new boolean[n+1];    //列
        boolean tip1[] = new boolean[n*2+1]; //右对角斜线 2~2n
        boolean tip2[] = new boolean[n*2+1]; //左对角斜线 2~2n
        nQueens(n, 1, col, tip1, tip2);
        return count;
    }
    public void nQueens(int n, int cou, boolean col[], boolean tip1[], boolean tip2[]){
        if(cou > n){
            count++;
            return;
        }
        for(int i=1; i<=n; i++){
            if(!col[i] && !tip1[cou+i] && !tip2[n-cou+1+i]){
                col[i] = true;
                tip1[cou+i] = true;
                tip2[n-cou+1+i] = true;
                nQueens(n, cou+1, col, tip1, tip2);
                col[i] = false;
                tip1[cou+i] = false;
                tip2[n-cou+1+i] = false;
            }
        }
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值