題意 中文
簡單的搜索題 標記列是否已經有子進行深搜即可 k可能小於n 所以每行都有放子或不放子兩種選擇
#includeusing namespace std; const int N = 10; int n, k, ans, v[N]; char g[N][N]; void dfs(int r, int cnt) { if(cnt >= k) ++ans; if(r >= n || cnt >= k) return; for(int c = 0; c < n; ++c) //第r行c列放一個子 if((!v[c]) && g[r][c] == '#') v[c] = 1, dfs(r + 1, cnt + 1), v[c] = 0; dfs(r + 1, cnt); //第r行不放子 } int main() { while(~scanf("%d%d", &n, &k), n + 1) { for(int i = 0; i < n; ++i) scanf("%s", g[i]); dfs(ans = 0, 0); printf("%d\n", ans); } return 0; }
棋盤問題
Description
在一個給定形狀的棋盤(形狀可能是不規則的)上面擺放棋子,棋子沒有區別。要求擺放時任意的兩個棋子不能放在棋盤中的同一行或者同一列,請編程求解對於給定形狀和大小的棋盤,擺放k個棋子的所有可行的擺放方案C。Input
輸入含有多組測試數據。Output
對於每一組數據,給出一行輸出,輸出擺放的方案數目C (數據保證C<2^31)。Sample Input
2 1 #. .# 4 4 ...# ..#. .#.. #... -1 -1
Sample Output
2 1