标签:
Description
Input
Output
Sample Input
2 1 #. .# 4 4 ...# ..#. .#.. #... -1 -1
Sample Output
2 1
变形的八皇后问题,统计好可以放棋子的点,dfs
#include <cstdio> #include <cstring> #include <algorithm> using namespace std ; char str[10][10] ; int r[10] , l[10] ; struct node { int x , y ; } p[100] ; int cnt , ans ; int n , k ; void dfs(int num,int i) { if( num == k+1 ) { ans++ ; return ; } if( i >= cnt ) return ; for( ; i < cnt ; i++) { if( r[ p[i].x ] == 0 && l[ p[i].y ] == 0 ) { r[ p[i].x ] = 1 ; l[ p[i].y ] = 1 ; dfs(num+1,i+1) ; r[ p[i].x ] = 0 ; l[ p[i].y ] = 0 ; } } } int main() { int i , j ; while( scanf("%d %d", &n, &k) != EOF ) { cnt = 0 ; ans = 0 ; if( n == -1 && k == -1 ) break ; for(i = 0 ; i < n ; i++) scanf("%s", str[i]) ; for(i = 0 ; i < n ; i++) for(j = 0 ; j < n ; j++) if( str[i][j] == '#' ) { p[cnt].x = i ; p[cnt++].y = j ; } memset(r,0,sizeof(r)) ; memset(l,0,sizeof(l)) ; dfs(1,0) ; printf("%d\n", ans) ; } }
标签:
原文地址:http://blog.csdn.net/winddreams/article/details/42979777