POJ-1321棋盘问题(简单深搜)
简单搜索step1
POJ-1321
- 这是第一次博客,题目也很简单,主要是注意格式书写以及常见的快速输入输出和文件输入输出的格式。
- 递归的时候注意起始是从(-1,-1)开始,然后每次从下一行开始递归。这样vis数组只需要开一维就可以了。
- 其实这里的递归的c可以不用,因为每次递归都要遍历每一列。
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int n,k;
char chess[8][8];
bool vis[8];
int cnt;
void dfs(int r,int c,int ans){
//cout<<r<<" "<<c<<" "<<ans<<endl;
if(ans==k){
cnt++;
return;
}
for(int i=r+1;i<n;i++){
for(int j=0;j<n;j++){
if(!vis[j]&&chess[i][j]=='#'){
vis[j]=1;
dfs(i,j,ans+1);
vis[j]=0;
}
}
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
// freopen("E:\vscodes\vscode_c++\C++FileIn.txt","r",stdin);
// freopen("E:\vscodes\vscode_c++\C++FileOut.txt","w",stdout);
while(cin>>n>>k&&(n!=-1&&k!=-1)){
for(int i=0;i<n;i++){
cin>>chess[i];
}
cnt=0;
memset(vis,0,sizeof(vis));
dfs(-1,-1,0);
cout<<cnt<<endl;
}
//system("pause");
return 0;
}
Either Excellent or Rusty