首页
题库
面试
求职
学习
竞赛
More+
所有博客
搜索面经/职位/试题/公司
搜索
我要招人
去企业版
登录 / 注册
首页
>
试题广场
>
n-皇后 ii
[编程题]n-皇后 ii
热度指数:7048
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32M,其他语言64M
算法知识视频讲解
继续思考“n-queens”问题
这次我们不是输出皇后的排列情况,而是输出n皇后问题一共有多少种解法
注:n 皇后问题是在 n*n 棋盘上放置 n 个皇后, 并且使它们互相不在对方的攻击范围之内的摆放方法;
注注:皇后的攻击范围是上、下、左、右、左上、左下、右下、右上共 8 个方向, 且不限距离。
示例1
输入
1
输出
1
示例2
输入
8
输出
92
马上挑战
算法知识视频讲解
提交运行
算法知识视频讲解
添加笔记
求解答(14)
邀请回答
收藏(62)
分享
纠错
提交结果有问题?
0个回答
1篇题解
添加回答
这道题你会答吗?花几分钟告诉大家答案吧!
提交观点
问题信息
查找
难度:
0条回答
62收藏
17555浏览
热门推荐
通过挑战的用户
查看代码
牛客88214...
2022-08-30 12:43:38
我在人间混日子
2022-08-27 18:31:52
Varus20...
2022-08-20 16:28:41
牛客97340...
2022-08-12 15:43:10
牛客92292...
2022-06-27 09:56:15
相关试题
编程题 ,按照要求创建Java 应...
Java
评论
(1)
微型计算机有三种总线,他们分别是数...
编程基础
评论
(1)
计算机系统中用于管理硬件和软件资源...
编程基础
评论
(1)
市场与销售的区别在哪里?
市场营销
评论
(1)
说出3个获取用户需求的方法并简述其...
用户研究
评论
(1)
n-皇后 ii
扫描二维码,关注牛客网
意见反馈
下载牛客APP,随时随地刷题
import java.util.*; public class Solution { /** * * @param n int整型 * @return int整型 */ public int totalNQueens (int n) { // write code here } }
class Solution { public: /** * * @param n int整型 * @return int整型 */ int totalNQueens(int n) { // write code here } };
# # # @param n int整型 # @return int整型 # class Solution: def totalNQueens(self , n ): # write code here
/** * * @param n int整型 * @return int整型 */ function totalNQueens( n ) { // write code here } module.exports = { totalNQueens : totalNQueens };
# # # @param n int整型 # @return int整型 # class Solution: def totalNQueens(self , n ): # write code here
package main /** * * @param n int整型 * @return int整型 */ func totalNQueens( n int ) int { // write code here }
1
1
8
92