程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj - 1321 - 棋盤問題

poj - 1321 - 棋盤問題

編輯:C++入門知識

題意:在一個n*n的棋盤上放k個棋子有幾種放法。(n <= 8, k <= n)

 ——>>和八皇後問題很像,只是這裡不用每行都有,簡單回溯。


[cpp]
#include <cstdio>  
#include <cstring>  
 
using namespace std; 
 
const int maxn = 10; 
int cnt, n, k; 
char MAP[maxn][maxn]; 
bool vis[maxn]; 
 
void dfs(int x, int cur) 

    if(cur == k) 
    { 
        cnt++; 
        return; 
    } 
    else 
    { 
        for(int i = x; i < n; i++) 
            for(int j = 0; j < n; j++) 
            if(MAP[i][j] == '#' && !vis[j]) 
            { 
                vis[j] = 1; 
                dfs(i+1, cur+1); 
                vis[j] = 0; 
            } 
    } 

 
int main() 

    int i, j; 
    while(scanf("%d%d", &n, &k) == 2) 
    { 
        if(n == -1 && k == -1) return 0; 
        for(i = 0; i < n; i++) 
        { 
            getchar(); 
            for(j = 0; j < n; j++) 
                MAP[i][j] = getchar(); 
        } 
        cnt = 0; 
        memset(vis, 0, sizeof(vis)); 
        dfs(0, 0); 
        printf("%d\n", cnt); 
    } 
    return 0; 

#include <cstdio>
#include <cstring>

using namespace std;

const int maxn = 10;
int cnt, n, k;
char MAP[maxn][maxn];
bool vis[maxn];

void dfs(int x, int cur)
{
    if(cur == k)
    {
        cnt++;
        return;
    }
    else
    {
        for(int i = x; i < n; i++)
            for(int j = 0; j < n; j++)
            if(MAP[i][j] == '#' && !vis[j])
            {
                vis[j] = 1;
                dfs(i+1, cur+1);
                vis[j] = 0;
            }
    }
}

int main()
{
    int i, j;
    while(scanf("%d%d", &n, &k) == 2)
    {
        if(n == -1 && k == -1) return 0;
        for(i = 0; i < n; i++)
        {
            getchar();
            for(j = 0; j < n; j++)
                MAP[i][j] = getchar();
        }
        cnt = 0;
        memset(vis, 0, sizeof(vis));
        dfs(0, 0);
        printf("%d\n", cnt);
    }
    return 0;
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved