标签:mic int http ++ can inpu cstring 输出 info
链接:https://vjudge.net/problem/POJ-1321
在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。
Input
2 1 #. .# 4 4 ...# ..#. .#.. #... -1 -1Sample Output
2 1
1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 #include <cstring> 5 using namespace std; 6 const int N = 10; 7 char mp[N][N]; 8 int lie[N]; 9 int n,k; 10 int ans; 11 void dfs(int hang, int cnt) //当前行开始 , cnt 表示放的棋子数目 12 { 13 if(cnt == k) ans++; //放置的方案数 14 for(int i = hang; i <= n; i++) 15 { 16 for(int j = 1; j <= n; j++) 17 { 18 if(mp[i][j] == ‘#‘ && !lie[j]) //判断当前点是否可放,当前列是否可放 19 { 20 lie[j] = 1; //标记已放 21 dfs(i+1, cnt+1); //搜索下一行 22 lie[j] = 0; //回溯 23 } 24 } 25 } 26 27 } 28 int main() 29 { 30 while(~scanf("%d%d",&n,&k)) 31 { 32 if(n == -1 && k == -1) break; 33 else 34 { 35 ans = 0; 36 memset(lie,0,sizeof(lie)); 37 for(int i = 1; i <= n; i++) 38 for(int j = 1; j <= n; j++) 39 scanf(" %c",&mp[i][j]); 40 dfs(1,0); 41 } 42 printf("%d\n",ans); 43 } 44 return 0; 45 }
标签:mic int http ++ can inpu cstring 输出 info
原文地址:https://www.cnblogs.com/Edviv/p/11440771.html