/*  Jeff Somers
*
* Copyright (c) 2002
*
* jsomers@alumni.williams.edu
* or
* allagash98@yahoo.com
*
* April, 2002
*
* Program: nq
*
* Program to find number of solutions to the N queens problem.
* This program assumes a twos complement architecture.
*
* For example, you can arrange 4 queens on 4 x 4 chess so that
* none of the queens can attack each other:
*
* Two solutions:
* _ Q _ _ _ _ Q _
* _ _ _ Q Q _ _ _
* Q _ _ _ _ _ _ Q
* _ _ Q _ and _ Q _ _
*
* Note that these are separate solutions, even though they
* are mirror images of each other.
*
* Likewise, a 8 x 8 chess board has 92 solutions to the 8 queens
* problem.
*
* Command Line Usage:
*
* nq N
*
* where N is the size of the N x N board. For example,
* nq 4 will find the 4 queen solution for the 4 x 4 chess
* board.
*
* By default, this program will only print the number of solutions,
* not board arrangements which are the solutions. To print the
* boards, uncomment the call to printtable in the Nqueen function.
* Note that printing the board arrangements slows down the program
* quite a bit, unless you pipe the output to a text file:
*
* nq 10 > output.txt
*
*
* The number of solutions for the N queens problems are known for
* boards up to 23 x 23. With this program, I've calculated the
* results for boards up to 21 x 21, and that took over a week on
* an 800 MHz PC. The algorithm is approximated O(n!) (i.e. slow),
* and calculating the results for a 22 x 22 board will take about 8.5
* times the amount of time for the 21 x 21 board, or over 8 1/2 weeks.
* Even with a 10 GHz machine, calculating the results for a 23 x 23
* board would take over a month. Of course, setting up a cluster of
* machines (or a distributed client) would do the work in less time.
*
* (from Sloane's On-Line Encyclopedia of Integer Sequences,
* Sequence A000170
* http://www.research.att.com/cgi-bin/access.cgi/as/njas/sequences/eisA.cgi?Anum=000170
* )
*
* Board Size: Number of Solutions to Time to calculate
* (length of one N queens problem: on 800MHz PC
* side of N x N (Hours:Mins:Secs)
* chessboard)
*
* 1 1 n/a
* 2 0 < 0 seconds
* 3 0 < 0 seconds
* 4 2 < 0 seconds
* 5 10 < 0 seconds
* 6 4 < 0 seconds
* 7 40 < 0 seconds
* 8 92 < 0 seconds
* 9 352 < 0 seconds
* 10 724 < 0 seconds
* 11 2680 < 0 seconds
* 12 14200 < 0 seconds
* 13 73712 < 0 seconds
* 14 365596 00:00:01
* 15 2279184 00:00:04
* 16 14772512 00:00:23
* 17 95815104 00:02:38
* 18 666090624 00:19:26
* 19 4968057848 02:31:24
* 20 39029188884 20:35:06
* 21 314666222712 174:53:45
* 22 2691008701644 ?
* 23 24233937684440 ?
* 24 ? ?
*/ #include <stdio.h>
#include <stdlib.h>
#include <time.h> /*
Notes on MAX_BOARDSIZE: A 32 bit unsigned long is sufficient to hold the results for an 18 x 18
board (666090624 solutions) but not for a 19 x 19 board (4968057848 solutions). In Win32, I use a 64 bit variable to hold the results, and merely set the
MAX_BOARDSIZE to 21 because that's the largest board for which I've
calculated a result. Note: a 20x20 board will take over 20 hours to run on a Pentium III 800MHz,
while a 21x21 board will take over a week to run on the same PC. On Unix, you could probably change the type of g_numsolutions from unsigned long
to unsigned long long, or change the code to use two 32 bit ints to store the
results for board sizes 19 x 19 and up.
*/ #ifdef WIN32 #define MAX_BOARDSIZE 21
typedef unsigned __int64 SOLUTIONTYPE; #else #define MAX_BOARDSIZE 18
typedef unsigned long SOLUTIONTYPE; #endif #define MIN_BOARDSIZE 2 SOLUTIONTYPE g_numsolutions = ; /* Print a chess table with queens positioned for a solution */
/* This is not a critical path function & I didn't try to optimize it. */
void printtable(int boardsize, int* aQueenBitRes, SOLUTIONTYPE numSolution)
{
int i, j, k, row; /* We only calculated half the solutions, because we can derive
the other half by reflecting the solution across the "Y axis". */
for (k = ; k < ; ++k)
{
#ifdef WIN32
printf("*** Solution #: %I64d ***\n", * numSolution + k - );
#else
printf("*** Solution #: %d ***\n", * numSolution + k - );
#endif
for ( i = ; i < boardsize; i++)
{
unsigned int bitf;
/*
Get the column that was set (i.e. find the
first, least significant, bit set).
If aQueenBitRes[i] = 011010b, then
bitf = 000010b
*/
bitf = aQueenBitRes[i]; row = bitf ^ (bitf & (bitf - )); /* get least significant bit */
for ( j = ; j < boardsize; j++)
{
/* keep shifting row over to the right until we find the one '1' in
the binary representation. There will only be one '1'. */
if ( == k && ((row >> j) & ))
{
printf("Q ");
}
else if ( == k && (row & ( << (boardsize - j - )))) /* this is the board reflected across the "Y axis" */
{
printf("Q ");
}
else
{
printf(". ");
}
}
printf("\n");
}
printf("\n");
}
} /* The function which calculates the N queen solutions.
We calculate one-half the solutions, then flip the results over
the "Y axis" of the board. Every solution can be reflected that
way to generate another unique solution (assuming the board size
isn't 1 x 1). That's because a solution cannot be symmetrical
across the Y-axis (because you can't have two queens in the same
horizontal row). A solution also cannot consist of queens
down the middle column of a board with an odd number of columns,
since you can't have two queens in the same vertical row. This is a backtracking algorithm. We place a queen in the top
row, then note the column and diagonals it occupies. We then
place a queen in the next row down, taking care not to place it
in the same column or diagonal. We then update the occupied
columns & diagonals & move on to the next row. If no position
is open in the next row, we back track to the previous row & move
the queen over to the next available spot in its row & the process
starts over again.
*/
void Nqueen(int board_size)
{
int aQueenBitRes[MAX_BOARDSIZE]; /* results */
int aQueenBitCol[MAX_BOARDSIZE]; /* marks colummns which already have queens */
int aQueenBitPosDiag[MAX_BOARDSIZE]; /* marks "positive diagonals" which already have queens */
int aQueenBitNegDiag[MAX_BOARDSIZE]; /* marks "negative diagonals" which already have queens */
int aStack[MAX_BOARDSIZE + ]; /* we use a stack instead of recursion */
register int* pnStack; register int numrows = ; /* numrows redundant - could use stack */
register unsigned int lsb; /* least significant bit */
register unsigned int bitfield; /* bits which are set mark possible positions for a queen */
int i;
int odd = board_size & ; /* 0 if board_size even, 1 if odd */
int board_minus = board_size - ; /* board size - 1 */
int mask = ( << board_size) - ; /* if board size is N, mask consists of N 1's */ /* Initialize stack */
aStack[] = -; /* set sentinel -- signifies end of stack */ /* NOTE: (board_size & 1) is true iff board_size is odd */
/* We need to loop through 2x if board_size is odd */
for (i = ; i < ( + odd); ++i)
{
/* We don't have to optimize this part; it ain't the
critical loop */
bitfield = ;
if ( == i)
{
/* Handle half of the board, except the middle
column. So if the board is 5 x 5, the first
row will be: 00011, since we're not worrying
about placing a queen in the center column (yet).
*/
int half = board_size>>; /* divide by two */
/* fill in rightmost 1's in bitfield for half of board_size
If board_size is 7, half of that is 3 (we're discarding the remainder)
and bitfield will be set to 111 in binary. */
bitfield = ( << half) - ;
pnStack = aStack + ; /* stack pointer */ aQueenBitRes[] = ;
aQueenBitCol[] = aQueenBitPosDiag[] = aQueenBitNegDiag[] = ;
}
else
{
/* Handle the middle column (of a odd-sized board).
Set middle column bit to 1, then set
half of next row.
So we're processing first row (one element) & half of next.
So if the board is 5 x 5, the first row will be: 00100, and
the next row will be 00011.
*/
bitfield = << (board_size >> );
numrows = ; /* prob. already 0 */ /* The first row just has one queen (in the middle column).*/
aQueenBitRes[] = bitfield;
aQueenBitCol[] = aQueenBitPosDiag[] = aQueenBitNegDiag[] = ;
aQueenBitCol[] = bitfield; /* Now do the next row. Only set bits in half of it, because we'll
flip the results over the "Y-axis". */
aQueenBitNegDiag[] = (bitfield >> );
aQueenBitPosDiag[] = (bitfield << );
pnStack = aStack + ; /* stack pointer */
*pnStack++ = ; /* we're done w/ this row -- only 1 element & we've done it */
bitfield = (bitfield - ) >> ; /* bitfield -1 is all 1's to the left of the single 1 */
} /* this is the critical loop */
for (;;)
{
/* could use
lsb = bitfield ^ (bitfield & (bitfield -1));
to get first (least sig) "1" bit, but that's slower. */
lsb = -((signed)bitfield) & bitfield; /* this assumes a 2's complement architecture */
if ( == bitfield)
{
bitfield = *--pnStack; /* get prev. bitfield from stack */
if (pnStack == aStack) { /* if sentinel hit.... */
break ;
}
--numrows;
continue;
}
bitfield &= ~lsb; /* toggle off this bit so we don't try it again */ aQueenBitRes[numrows] = lsb; /* save the result */
if (numrows < board_minus) /* we still have more rows to process? */
{
int n = numrows++;
aQueenBitCol[numrows] = aQueenBitCol[n] | lsb;
aQueenBitNegDiag[numrows] = (aQueenBitNegDiag[n] | lsb) >> ;
aQueenBitPosDiag[numrows] = (aQueenBitPosDiag[n] | lsb) << ;
*pnStack++ = bitfield;
/* We can't consider positions for the queen which are in the same
column, same positive diagonal, or same negative diagonal as another
queen already on the board. */
bitfield = mask & ~(aQueenBitCol[numrows] | aQueenBitNegDiag[numrows] | aQueenBitPosDiag[numrows]);
continue;
}
else
{
/* We have no more rows to process; we found a solution. */
/* Comment out the call to printtable in order to print the solutions as board position*/
/* printtable(board_size, aQueenBitRes, g_numsolutions + 1); */
++g_numsolutions;
bitfield = *--pnStack;
--numrows;
continue;
}
}
} /* multiply solutions by two, to count mirror images */
g_numsolutions *= ;
} /* Print the results at the end of the run */
void printResults(time_t* pt1, time_t* pt2)
{
double secs;
int hours , mins, intsecs; printf("End: \t%s", ctime(pt2));
secs = difftime(*pt2, *pt1);
intsecs = (int)secs;
printf("Calculations took %d second%s.\n", intsecs, (intsecs == ? "" : "s")); /* Print hours, minutes, seconds */
hours = intsecs/;
intsecs -= hours * ;
mins = intsecs/;
intsecs -= mins * ;
if (hours > || mins > )
{
printf("Equals ");
if (hours > )
{
printf("%d hour%s, ", hours, (hours == ) ? "" : "s");
}
if (mins > )
{
printf("%d minute%s and ", mins, (mins == ) ? "" : "s");
}
printf("%d second%s.\n", intsecs, (intsecs == ? "" : "s")); }
} /* main routine for N Queens program.*/
int main(int argc, char** argv)
{
time_t t1, t2;
int boardsize; if (argc != ) {
printf("N Queens program by Jeff Somers.\n");
printf("\tallagash98@yahoo.com or jsomers@alumni.williams.edu\n");
printf("This program calculates the total number of solutions to the N Queens problem.\n");
printf("Usage: nq <width of board>\n"); /* user must pass in size of board */
return ;
} boardsize = atoi(argv[]); /* check size of board is within correct range */
if (MIN_BOARDSIZE > boardsize || MAX_BOARDSIZE < boardsize)
{
printf("Width of board must be between %d and %d, inclusive.\n",
MIN_BOARDSIZE, MAX_BOARDSIZE );
return ;
} time(&t1);
printf("N Queens program by Jeff Somers.\n");
printf("\tallagash98@yahoo.com or jsomers@alumni.williams.edu\n");
printf("Start: \t %s", ctime(&t1)); Nqueen(boardsize); /* find solutions */
time(&t2); printResults(&t1, &t2); if (g_numsolutions != )
{
#ifdef WIN32
printf("For board size %d, %I64d solution%s found.\n", boardsize, g_numsolutions, (g_numsolutions == ? "" : "s"));
#else
printf("For board size %d, %d solution%s found.\n", boardsize, g_numsolutions, (g_numsolutions == ? "" : "s"));
#endif
}
else
{
printf("No solutions found.\n");
} return ;
}

最新文章

  1. 在ubuntu上建立多svn版本库
  2. CSS 自定义字体
  3. 安卓自动化测试(2)Robotium环境搭建与新手入门教程
  4. 编写高质量代码改善C#程序的157个建议[优先考虑泛型、避免在泛型中声明静态成员、为泛型参数设定约束]
  5. 鸟哥的linux私房菜之vim
  6. Find Minimum in Rotated Sorted Array II
  7. RDD的依赖关系
  8. 【原创】leetCodeOj --- Fraction to Recurring Decimal 解题报告
  9. Paint Pearls
  10. bzoj1061--线性规划
  11. TensorFlow从入门到理解(五):你的第一个循环神经网络RNN(回归例子)
  12. mybatis中_parameter使用和常用sql
  13. BZOJ1500[NOI2005]维修数列——非旋转treap
  14. Intent 类型
  15. postgresql----COPY之表与文件之间的拷贝
  16. 改变您的HTTP服务器的缺省banner
  17. C printf按8进制、10进制、16进制输出以及高位补0
  18. 解决okhttp的java.lang.IllegalStateException: closed错误
  19. Dash:程序员的好帮手(转载)
  20. UVA-11761-马尔可夫/记忆化搜索

热门文章

  1. PLSQL快捷补充代码设置
  2. (转)linux文件读写的流程
  3. ruby -- 基础学习(九)filename去除扩展名
  4. [OpenCV] IplImage and Functions
  5. Direct2D开发:绘制网格
  6. Android 学习笔记之使用多线程实现断点下载...
  7. js中this的四种调用模式
  8. 表上的DELETE操作
  9. [转]提高 Linux 上 socket 性能,加速网络应用程序的 4 种方法
  10. IE11之F12 Developer Tools--概述篇