mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-28 16:44:22 +00:00
d7b2277d2b
* Retranslate Japanese docs with GPT-5.4 * Retranslate Japanese code with GPT-5.4
66 lines
2.4 KiB
C++
66 lines
2.4 KiB
C++
/**
|
|
* File: n_queens.cpp
|
|
* Created Time: 2023-05-04
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
#include "../utils/common.hpp"
|
|
|
|
/* バックトラッキング:N クイーン */
|
|
void backtrack(int row, int n, vector<vector<string>> &state, vector<vector<vector<string>>> &res, vector<bool> &cols,
|
|
vector<bool> &diags1, vector<bool> &diags2) {
|
|
// すべての行への配置が完了したら、解を記録する
|
|
if (row == n) {
|
|
res.push_back(state);
|
|
return;
|
|
}
|
|
// すべての列を走査
|
|
for (int col = 0; col < n; col++) {
|
|
// このマスに対応する主対角線と副対角線を計算
|
|
int diag1 = row - col + n - 1;
|
|
int diag2 = row + col;
|
|
// 枝刈り:そのマスの列、主対角線、副対角線にクイーンがあってはならない
|
|
if (!cols[col] && !diags1[diag1] && !diags2[diag2]) {
|
|
// 試行:そのマスにクイーンを置く
|
|
state[row][col] = "Q";
|
|
cols[col] = diags1[diag1] = diags2[diag2] = true;
|
|
// 次の行に配置する
|
|
backtrack(row + 1, n, state, res, cols, diags1, diags2);
|
|
// 戻す:そのマスを空きマスに戻す
|
|
state[row][col] = "#";
|
|
cols[col] = diags1[diag1] = diags2[diag2] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* N クイーンを解く */
|
|
vector<vector<vector<string>>> nQueens(int n) {
|
|
// n*n の盤面を初期化する。'Q' はクイーン、'#' は空きマスを表す
|
|
vector<vector<string>> state(n, vector<string>(n, "#"));
|
|
vector<bool> cols(n, false); // 列にクイーンがあるか記録
|
|
vector<bool> diags1(2 * n - 1, false); // 主対角線にクイーンがあるかを記録
|
|
vector<bool> diags2(2 * n - 1, false); // 副対角線にクイーンがあるかを記録
|
|
vector<vector<vector<string>>> res;
|
|
|
|
backtrack(0, n, state, res, cols, diags1, diags2);
|
|
|
|
return res;
|
|
}
|
|
|
|
/* Driver Code */
|
|
int main() {
|
|
int n = 4;
|
|
vector<vector<vector<string>>> res = nQueens(n);
|
|
|
|
cout << "入力した盤面の縦横は " << n << endl;
|
|
cout << "クイーンの配置方法は全部で " << res.size() << " 通り" << endl;
|
|
for (const vector<vector<string>> &state : res) {
|
|
cout << "--------------------" << endl;
|
|
for (const vector<string> &row : state) {
|
|
printVector(row);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|