hdu 2553 N皇后问题 解题报告

N皇后问题

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6921 Accepted Submission(s): 3134


Problem Description
在N*N的方格棋盘放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在与棋盘边框成45角的斜线上。
你的任务是,对于给定的N,求出有多少种合法的放置方法。


Input
共有若干行,每行一个正整数N≤10,表示棋盘和皇后的数量;如果N=0,表示结束。

Output
共有若干行,每行一个正整数,表示对应输入行的皇后的不同放置数量。

Sample Input
 
   
1 8 5 0

Sample Output
 
   
1 92 10
解题分析
dfs,或者bfs
解题代码
#include 
#include 
#include 
using namespace std;
int n,t,flag,line[15];
int count[15];
void dfs(int row)
{
    if(row==n)
        t++;
    else
        for(int i=0; i


你可能感兴趣的:(解题报告)