-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8bishops.c
More file actions
231 lines (210 loc) · 4.72 KB
/
8bishops.c
File metadata and controls
231 lines (210 loc) · 4.72 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <time.h>
/// W/B - Unoccupied white/black squares
/// F - Bishop figure
/// O - Occupied
void fillBoard(char board[8][8])
{
for (int i = 0; i < 8; i++)
{
if (i % 2 == 1)
{
for (int ii = 0; ii < 8; ii++)
{
if (ii % 2 == 1)
{
board[i][ii] = 'W';
}
else
{
board[i][ii] = 'B';
}
}
}
else
{
for (int ii = 0; ii < 8; ii++)
{
if (ii % 2 == 1)
{
board[i][ii] = 'B';
}
else
{
board[i][ii] = 'W';
}
}
}
}
}
void printBoard(char board[8][8])
{
for (int i = 0; i < 8; i++)
{
for (int ii = 0; ii < 8; ii++)
{
printf(" %c ", board[i][ii]);
}
printf("\n");
}
printf("\n");
}
void insertBishop(char board[8][8], int x, int y, char figure, char toProject)
{
board[y][x] = figure;
int tempx = x;
int tempy = y;
/// right down
while (tempx < 7 && tempy < 7)
{
tempx++;
tempy++;
board[tempy][tempx] = toProject;
}
tempx = x;
tempy = y;
/// right up
while (tempx < 7 && tempy > 0)
{
tempx++;
tempy--;
board[tempy][tempx] = toProject;
}
tempx = x;
tempy = y;
/// left up
while (tempx > 0 && tempy > 0)
{
tempx--;
tempy--;
board[tempy][tempx] = toProject;
}
tempx = x;
tempy = y;
/// left down
while (tempx > 0 && tempy < 7)
{
tempx--;
tempy++;
board[tempy][tempx] = toProject;
}
}
bool checkIfFull(char board[8][8], char toCheck)
{
char temp;
for (int i = 0; i < 8; i++)
{
for (int ii = 0; ii < 8; ii++)
{
temp = board[i][ii];
if (temp == toCheck)
{
return false;
}
}
}
printf("\n\n");
return true;
}
bool place(int i, int start, char board[8][8])
{
if (i == 8)
{
if (checkIfFull(board, 'W'))
{
printBoard(board);
return true;
}
}
else
{
for (int j = start; j < 32; j++)
{
int row = j / 4;
int col = 2 * (j % 4) + row % 2;
insertBishop(board, col, row, 'F', 'O');
if (place(i + 1, j + 1, board))
{
return true;
}
insertBishop(board, col, row, 'W', 'W');
}
}
return false;
}
bool placeBlack(int i, int start, char board[8][8])
{
if (i == 8)
{
if (checkIfFull(board, 'B'))
{
printBoard(board);
return true;
}
}
else
{
for (int j = start; j < 32; j++)
{
int row = j / 4;
int col = 2 * (j % 4) + row % 2;
if (row % 2 == 1)
{
col -= 1;
}
else
{
col += 1;
}
insertBishop(board, col, row, 'F', 'O');
if (placeBlack(i + 1, j + 1, board))
{
return true;
}
insertBishop(board, col, row, 'B', 'B');
}
}
return false;
}
void invertSolution(char board[8][8])
{
for (int i = 0; i < 8; i++)
{
for (int ii = 0; ii < 8; ii++)
{
if (board[i][ii] == 'F')
{
if (ii == 0)
{
insertBishop(board, ii + 1, i, 'F', 'O');
}
else
{
insertBishop(board, ii - 1, i, 'F', 'O');
}
}
}
}
}
int main()
{
clock_t start_t, end_t, total_t;
int i;
int n = 8;
char board[n][n];
fillBoard(board);
start_t = clock();
printf("Starting of the program, start_t = %ld\n", start_t);
printf("Going to start calculating, start_t = %ld\n", start_t);
place(0, 0, board);
/// placeBlack(0, 0, board);
invertSolution(board);
end_t = clock();
printf("End of the calculating, end_t = %ld\n", end_t);
total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;
printf("Total time taken by CPU: %f\n", total_t);
/// printBoard(board);
return 0;
}