题目链接:http://poj.org/problem?id=1321
--------------------------------------------------------
题意:给定棋盘区域,要求对于k个棋子存在多少种不同的摆放方案
思路:经典dfs,标记行列进行深搜,然后取消标记。循环得到摆放方案的种数
代码:
#include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<string> #include<vector> #include<stack> #include<bitset> #include<cstdlib> #include<cmath> #include<set> #include<list> #include<deque> #include<map> #include<queue> using namespace std; typedef long long ll; const double PI = acos(-1.0); const double eps = 1e-6; const int MAXN =10+10; int n,k; char chess[MAXN][MAXN]; int row[MAXN]; int col[MAXN]; int sum; void dfs(int step,int hang) { if(step==k) { sum++; return ; } for(int i=hang;i<n;i++) { for(int j=0;j<n;j++) { if(row[i]==1||col[j]==1||chess[i][j]!=‘#‘) continue; else { row[i]=col[j]=1; dfs(step+1,i); row[i]=col[j]=0; } } } } int main() { while(scanf("%d%d",&n,&k)&&(n!=-1&&k!=-1)){ memset(chess,0,sizeof(chess)); memset(row,0,sizeof(row)); memset(col,0,sizeof(col)); sum=0; for(int i=0;i<n;i++){ scanf("%s",&chess[i]); } dfs(0,0); printf("%d\n",sum); } return 0; }
原文地址:https://www.cnblogs.com/caomingpei/p/8386259.html
时间: 2024-10-21 13:57:05