1. 程式人生 > 實用技巧 >八皇后模板

八皇后模板

八皇后 - queen 模板

題目連結

Code

1_queen.rar:https://www.90pan.com/b2125383

密碼:bvsw

  • queen

檔名

queen.cpp

分數

1


初始化程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];

int main() {
    cin >> n;

    return 0;
}

第一步

講解

通過本節課,我們來用 dfs 演算法來解決一個實際問題——N皇后問題。

N皇后問題是一個經典的問題,在一個N*N的棋盤上放置N個皇后,每行一個並使其不能互相攻擊(同一行、同一列、同一斜線上的皇后都會自動攻擊)。

我們先定義一些標記陣列。在main函式的上方寫下

bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
int main() {
    cin >> n;

    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
int main() {
    cin >> n;

    return 0;
}

第二步

講解

下面我們要將剛剛定義的標記陣列初始化。在main

函式裡寫下

memset(a, false, sizeof(a));
memset(x1, false, sizeof(x1));
memset(y1, false, sizeof(y1));
memset(G, 0, sizeof(G));

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}

第三步

講解

接下來我們要實現一個dfs的函式框架,flag為1表示已經搜到了一個符合要求的N皇后。在main函式上面繼續寫下

void dfs(int deep) {
    if (flag == 1) {
        return;
    }
}

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}


第四步

講解

當搜尋的深度deep大於等於n時,說明已經搜尋完了,這時輸出我們搜尋到的結果並把flag標記設定為1。在dfs函式裡面寫下

if (deep >= n) {
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            cout << G[i][j] << " ";
        }
        cout << endl;
    }
    flag = 1;
    return;
}

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}


第五步

講解

接下來我們遍歷每一列看是否可以繼續放皇后,如果可以那麼dfs(deep + 1)。在dfs函式裡繼續寫下

for (int i = 0; i < n; i++) {
    if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
        dfs(deep + 1);
    }
}

注意標記陣列在dfs前後的truefalse的轉化。當出了dfs一定要記得還原標記,否則會影響下一次dfs的結果。

for (int i = 0; i < n; i++) {
    if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
        x1[deep + i] = true;
        y1[i - deep + n] = true;
        a[i] = true;
        G[deep][i] = 1;
        dfs(deep + 1);
        a[i] = false;
        x1[deep + i]=false;
        y1[i - deep + n] = false;
        G[deep][i] = 0;
    }
}

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
    for (int i = 0; i < n; i++) {
        if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
            x1[deep + i] = true;
            y1[i - deep + n] = true;
            a[i] = true;
            G[deep][i] = 1;
            dfs(deep + 1);
            a[i] = false;
            x1[deep + i]=false;
            y1[i - deep + n] = false;
            G[deep][i] = 0;
        }
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
    for (int i = 0; i < n; i++) {
        if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
            x1[deep + i] = true;
            y1[i - deep + n] = true;
            a[i] = true;
            G[deep][i] = 1;
            dfs(deep + 1);
            a[i] = false;
            x1[deep + i]=false;
            y1[i - deep + n] = false;
            G[deep][i] = 0;
        }
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));

    return 0;
}


第六步

講解

最後在main加上dfs函式的呼叫。繼續寫下

dfs(0);

提示

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
    for (int i = 0; i < n; i++) {
        if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
            x1[deep + i] = true;
            y1[i - deep + n] = true;
            a[i] = true;
            G[deep][i] = 1;
            dfs(deep + 1);
            a[i] = false;
            x1[deep + i]=false;
            y1[i - deep + n] = false;
            G[deep][i] = 0;
        }
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));
    dfs(0);
    return 0;
}

程式碼

#include <iostream>
#include <cstring>
using namespace std;

int n;
bool flag = 0;
int G[20][20];
bool a[20];  // 列佔用情況,若第 i 列被佔用,則 a[i] = true,否則為 false
bool x1[20];  // 左下-右上 對角線的佔用情況
bool y1[20];  // 左上-右下 對角線的佔用情況
void dfs(int deep) {
    if (flag == 1) {
        return;
    }
    if (deep >= n) {
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                cout << G[i][j] << " ";
            }
            cout << endl;
        }
        flag = 1;
        return;
    }
    for (int i = 0; i < n; i++) {
        if (x1[i + deep] == false && y1[i - deep + n] == false && a[i] == false) {
            x1[deep + i] = true;
            y1[i - deep + n] = true;
            a[i] = true;
            G[deep][i] = 1;
            dfs(deep + 1);
            a[i] = false;
            x1[deep + i]=false;
            y1[i - deep + n] = false;
            G[deep][i] = 0;
        }
    }
}
int main() {
    cin >> n;
    memset(a, false, sizeof(a));
    memset(x1, false, sizeof(x1));
    memset(y1, false, sizeof(y1));
    memset(G, 0, sizeof(G));
    dfs(0);
    return 0;
}


完成講解

終於完成了,點選執行,輸入8看看效果吧。

聰明的你一定學會了dfs怎麼用了。