标签:
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 29121 | Accepted: 14434 |
Description
Input
Output
Sample Input
2 1 #. .# 4 4 ...# ..#. .#.. #... -1 -1
Sample Output
2 1
Source
#include<cstdio> #include<cstring> #define MAX 9 using namespace std; char map[MAX][MAX]; int ans,n,k,count; bool vis[MAX]; void DFS(int index)//行 { if(index>=n)//行数满了 结束,>是方便继续回溯 return; for(int i=0; i<n; i++)//列 { if(map[index][i]==‘#‘&&!vis[i])//在棋盘上,并且这一列没走过 { vis[i]=1;//标记已摆放 count++;//摆放棋子数 if(count==k)//摆放棋子数等于题目要求 ans++;//方案加一 else DFS(index+1);//不合要求,继续递归 //重点体会 count--;//回溯去寻找另一方案 vis[i]=0; } } DFS(index+1);//列满时 } int main() { while(scanf("%d%d",&n,&k)&&n!=-1) { ans=0; memset(vis,0,sizeof(vis)); for(int i=0; i<n; i++) scanf("%s",&map[i]); DFS(0); printf("%d\n",ans); } return 0; }
标签:
原文地址:http://www.cnblogs.com/tianmin123/p/4830478.html