mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-13 15:56:05 +00:00
772183705e
* Add Russian docs site baseline * Add Russian localized codebase * Polish Russian code wording * Update ru code translation. * Update code translation and chapter covers. * Fix pythontutor extraction. * Add README and landing page. * placeholder of profiles * Use figures of English version * Remove chapter paperbook
76 lines
2.8 KiB
Dart
76 lines
2.8 KiB
Dart
/**
|
|
* File: n_queens.dart
|
|
* Created Time: 2023-08-10
|
|
* Author: liuyuxin (gvenusleo@gmail.com)
|
|
*/
|
|
|
|
/* Алгоритм бэктрекинга: n ферзей */
|
|
void backtrack(
|
|
int row,
|
|
int n,
|
|
List<List<String>> state,
|
|
List<List<List<String>>> res,
|
|
List<bool> cols,
|
|
List<bool> diags1,
|
|
List<bool> diags2,
|
|
) {
|
|
// Когда все строки уже обработаны, записать решение
|
|
if (row == n) {
|
|
List<List<String>> copyState = [];
|
|
for (List<String> sRow in state) {
|
|
copyState.add(List.from(sRow));
|
|
}
|
|
res.add(copyState);
|
|
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] = true;
|
|
diags1[diag1] = true;
|
|
diags2[diag2] = true;
|
|
// Перейти к размещению следующей строки
|
|
backtrack(row + 1, n, state, res, cols, diags1, diags2);
|
|
// Откат: восстановить эту клетку как пустую
|
|
state[row][col] = "#";
|
|
cols[col] = false;
|
|
diags1[diag1] = false;
|
|
diags2[diag2] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Решить задачу о n ферзях */
|
|
List<List<List<String>>> nQueens(int n) {
|
|
// Инициализировать доску размера n*n, где 'Q' обозначает ферзя, а '#' — пустую клетку
|
|
List<List<String>> state = List.generate(n, (index) => List.filled(n, "#"));
|
|
List<bool> cols = List.filled(n, false); // Отмечать, есть ли ферзь в столбце
|
|
List<bool> diags1 = List.filled(2 * n - 1, false); // Отмечать наличие ферзя на главной диагонали
|
|
List<bool> diags2 = List.filled(2 * n - 1, false); // Отмечать наличие ферзя на побочной диагонали
|
|
List<List<List<String>>> res = [];
|
|
|
|
backtrack(0, n, state, res, cols, diags1, diags2);
|
|
|
|
return res;
|
|
}
|
|
|
|
/* Driver Code */
|
|
void main() {
|
|
int n = 4;
|
|
List<List<List<String>>> res = nQueens(n);
|
|
print("Размер входной доски = $n");
|
|
print("Количество способов расстановки ферзей: ${res.length}");
|
|
for (List<List<String>> state in res) {
|
|
print("--------------------");
|
|
for (List<String> row in state) {
|
|
print(row);
|
|
}
|
|
}
|
|
}
|