2020-04-30 00:41:47 +08:00
|
|
|
#include <iostream>
|
|
|
|
#define n 4
|
2020-05-30 07:26:30 +08:00
|
|
|
#define inc_loop(var, start, stop) for (int var = start; var <= stop; var++)
|
|
|
|
#define dec_loop(var, start, stop) for (int var = start; var >= stop; var--)
|
|
|
|
void PrintSol(int Board[n][n])
|
|
|
|
{
|
|
|
|
inc_loop(i, 0, n - 1)
|
|
|
|
{
|
|
|
|
inc_loop(j, 0, n - 1) std::cout << Board[i][j] << " ";
|
2020-04-30 00:41:47 +08:00
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
2020-05-30 07:26:30 +08:00
|
|
|
if (n % 2 == 0 || (n % 2 == 1 && Board[n / 2 + 1][0] != 1))
|
|
|
|
{
|
|
|
|
inc_loop(i, 0, n - 1)
|
|
|
|
{
|
|
|
|
dec_loop(j, n - 1, 0) std::cout << Board[i][j] << " ";
|
2020-04-30 01:19:20 +08:00
|
|
|
std::cout << std::endl;
|
2020-04-30 00:41:47 +08:00
|
|
|
}
|
2020-04-30 01:19:20 +08:00
|
|
|
std::cout << std::endl;
|
2020-04-30 00:41:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
bool CanIMove(int Board[n][n], int row, int col)
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
/// check in the row
|
2020-05-30 07:26:30 +08:00
|
|
|
inc_loop(i, 0, col - 1)
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
if (Board[row][i] == 1)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/// check the first diagonal
|
2020-05-30 07:26:30 +08:00
|
|
|
for (int i = row, j = col; i >= 0 && j >= 0; i--, j--)
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
if (Board[i][j] == 1)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/// check the second diagonal
|
2020-05-30 07:26:30 +08:00
|
|
|
for (int i = row, j = col; i <= n - 1 && j >= 0; i++, j--)
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
if (Board[i][j] == 1)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
void NQueenSol(int Board[n][n], int col)
|
|
|
|
{
|
|
|
|
if (col >= n)
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
PrintSol(Board);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-30 07:26:30 +08:00
|
|
|
inc_loop(i, 0, n - 1)
|
|
|
|
{
|
|
|
|
if (CanIMove(Board, i, col))
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
Board[i][col] = 1;
|
|
|
|
NQueenSol(Board, col + 1);
|
|
|
|
Board[i][col] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
int main()
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
int Board[n][n] = {0};
|
2020-05-30 07:26:30 +08:00
|
|
|
if (n % 2 == 0)
|
|
|
|
{
|
|
|
|
inc_loop(i, 0, n / 2 - 1)
|
|
|
|
{
|
|
|
|
if (CanIMove(Board, i, 0))
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
Board[i][0] = 1;
|
2020-04-30 01:19:20 +08:00
|
|
|
NQueenSol(Board, 1);
|
2020-04-30 00:41:47 +08:00
|
|
|
Board[i][0] = 0;
|
|
|
|
}
|
|
|
|
}
|
2020-05-30 07:26:30 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inc_loop(i, 0, n / 2)
|
|
|
|
{
|
|
|
|
if (CanIMove(Board, i, 0))
|
|
|
|
{
|
2020-04-30 00:41:47 +08:00
|
|
|
Board[i][0] = 1;
|
2020-04-30 01:19:20 +08:00
|
|
|
NQueenSol(Board, 1);
|
2020-04-30 00:41:47 +08:00
|
|
|
Board[i][0] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|