-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueen-arrangement.c
64 lines (56 loc) · 1.37 KB
/
queen-arrangement.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
Problem: Chapter2_QueenArrangment_VINHLT
Description
Xếp N quân hậu vào một bàn cờ sao cho không có 2 quân hậu nào "ăn nhau" (cùng hàng, cùng cột, cùng đường chéo).
Đầu vào: Số nguyên N
Đầu ra gồm nhiều hàng, mỗi hàng là một dãy số có ý nghĩa là giá trị hàng của các quân hậu từ cột 1 đến cột N.
*/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
void printSolution(int* board, int N)
{
for (int i = 0; i < N; i++) {
printf("%d", board[i] + 1);
}
printf("\n");
}
bool isSafe(int* board, int row, int col, int N)
{
for (int i = 0; i < col; i++) {
if (board[i] == row || abs(board[i] - row) == abs(i - col))
return false;
}
return true;
}
void solveNQUtil(int* board, int col, int N)
{
if (col == N) {
printSolution(board, N);
return;
}
for (int i = 0; i < N; i++) {
if (isSafe(board, i, col, N)) {
board[col] = i;
solveNQUtil(board, col + 1, N);
}
}
}
void solveNQ(int N)
{
int* board = (int*)malloc(N * sizeof(int));
if (board == NULL) {
printf("Memory allocation failed");
return;
}
solveNQUtil(board, 0, N);
free(board);
}
int main()
{
int N;
printf("Enter the number of queens: ");
scanf("%d", &N);
solveNQ(N);
return 0;
}