leetcode:N-Queens 问题

一、N-QueensII

 1 class Solution {
 2 public:
 3     int totalNQueens(int n) {
 4         int total = 0;
 5         vector<int> v(n,0);
 6         dfs(0,n,total,v);
 7         return total;
 8     }
 9 private:
10     bool isvalide(vector<int>& v,int x){
11         for(int i=0;i<x;i++){
12             if(v[i]==v[x] || abs(v[x]-v[i])==abs(x - i))
13                 return false;
14         }
15         return true;
16     }
17
18     void dfs(int curr,int n,int& total,vector<int>& v){
19         if(curr == n) {
20             total++;
21             return;
22         }
23
24         for(int i=0;i<n;i++){
25             v[curr] = i;
26             if(isvalide(v,curr)){
27                 dfs(curr+1,n,total,v);
28             }
29         }
30     }
31 };

二、N-Queens

 1 class Solution {
 2 public:
 3     vector<vector<string>> solveNQueens(int n) {
 4         vector<vector<string>> result;
 5         vector<int> v(n,-1);
 6         dfs(0,n,v,result);
 7         return result;
 8     }
 9     bool isValide(vector<int>& v,int curr){
10         for(int i=0;i< curr;i++){
11             if(v[i] == v[curr] || abs(v[curr]-v[i])==abs(curr-i))
12                 return false;
13         }
14         return true;
15     }
16     void dfs(int curr,int n,vector<int>& v,
17             vector<vector<string>>& result){
18         if(curr == n){
19             vector<string> temp;
20             for(int i=0;i<n;i++){
21                 string s(n,‘.‘);
22                 s[v[i]] = ‘Q‘;
23                 temp.push_back(s);
24             }
25             result.push_back(temp);
26             return;
27         }
28         for(int i=0;i<n;i++){
29             v[curr] = i;
30             if(isValide(v,curr)){
31                 dfs(curr+1, n, v,result);
32             }
33         }
34     }
35 };
时间: 2024-09-29 11:15:47

leetcode:N-Queens 问题的相关文章

[Leetcode] n queens n皇后问题

The n-queens puzzle is the problem of placing n queens on an n×nchessboard 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 t

leetcode#52 N queensⅡ

n 皇后问题研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击. 上图为 8 皇后问题的一种解法. 给定一个整数 n,返回 n 皇后不同的解决方案的数量. 示例: 输入: 4 输出: 2 解释: 4 皇后问题存在如下两个不同的解法. [  [".Q..",  // 解法 1   "...Q",   "Q...",   "..Q."],  ["..Q.",  // 解法 2  

[Leetcode][Python]52: N-Queens II

# -*- coding: utf8 -*-'''__author__ = '[email protected]' 52: N-Queens IIhttps://oj.leetcode.com/problems/n-queens-ii/ Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions. ===Comm

【leetcode】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

LeetCode: N-Queens [050]

[题目] 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 configuratio

[LeetCode] “全排列”问题系列(一) - 用交换元素法生成全排列及其应用,例题: Permutations I 和 II, N-Queens I 和 II,数独问题

转:http://www.cnblogs.com/felixfang/p/3705754.html 一.开篇 Permutation,排列问题.这篇博文以几道LeetCode的题目和引用剑指offer上的一道例题入手,小谈一下这种类型题目的解法. 二.上手 最典型的permutation题目是这样的: Given a collection of numbers, return all possible permutations. For example,[1,2,3] have the foll

【leetcode刷题笔记】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

LeetCode:N-Queens I II(n皇后问题)

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 configur

leetcode 刷题之路 94 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

N-Queens II leetcode java

题目: Follow up for N-Queens problem. Now, instead outputting board configurations, return the total number of distinct solutions. 题解: 这道题跟NQueens的解法完全一样(具体解法参照N QueensN Queens leetcode java),只不过要求的返回值不同了..所以要记录的result稍微改一下就好了... 因为涉及到递归,result传进去引用类型(