-
Notifications
You must be signed in to change notification settings - Fork 6
/
ai8_endgame_search.cpp
525 lines (472 loc) · 18.4 KB
/
ai8_endgame_search.cpp
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#include <iostream>
#include <unordered_map>
#include <vector>
#include <algorithm>
#include "board.hpp"
#include "pattern_mobility_surround_evaluation.hpp"
#include "book.hpp"
#include "endgame_evaluation.hpp"
using namespace std;
#define inf 100000000 // 大きな値
#define cache_hit_bonus 1000 // 前回の探索で枝刈りされなかったノードへのボーナス
#define complete_depth 16 // 完全読みする残り空きマス数
unordered_map<board, int, board::hash> transpose_table_upper; // 現在の探索結果を入れる置換表(上限): 同じ局面に当たった時用
unordered_map<board, int, board::hash> transpose_table_lower; // 現在の探索結果を入れる置換表(下限): 同じ局面に当たった時用
unordered_map<board, int, board::hash> former_transpose_table_upper; // 前回の探索結果が入る置換表(上限): move orderingに使う
unordered_map<board, int, board::hash> former_transpose_table_lower; // 前回の探索結果が入る置換表(下限): move orderingに使う
unsigned long long visited_nodes; // 訪問ノード数
// 初期化
inline void init() {
board_init();
evaluate_init();
book_init();
endgame_evaluate_init();
}
// 標準入力からボードの状態を配列に受け取る
inline void input_board(int arr[]) {
char elem;
for (int i = 0; i < hw2; ++i) {
cin >> elem;
if (elem == '0')
arr[i] = black;
else if (elem == '1')
arr[i] = white;
else
arr[i] = vacant;
}
}
// move ordering用評価値の計算
inline int calc_move_ordering_value(const board b) {
int res;
if (former_transpose_table_upper.find(b) != former_transpose_table_upper.end()) {
// 前回の探索で上限値が格納されていた場合
res = cache_hit_bonus - former_transpose_table_upper[b];
} else if (former_transpose_table_lower.find(b) != former_transpose_table_lower.end()) {
// 前回の探索で下限値が格納されていた場合
res = cache_hit_bonus - former_transpose_table_lower[b];
} else {
// 前回の探索で枝刈りされた
res = -evaluate(b);
}
return res;
}
// move orderingと置換表つきnegaalpha法 null windows searchに使う
int nega_alpha_transpose(board b, int depth, bool passed, int alpha, int beta) {
++visited_nodes;
// 葉ノードでは評価関数を実行する
if (depth == 0)
return evaluate(b);
// 置換表から上限値と下限値があれば取得
int u = inf, l = -inf;
if (transpose_table_upper.find(b) != transpose_table_upper.end())
u = transpose_table_upper[b];
if (transpose_table_lower.find(b) != transpose_table_lower.end())
l = transpose_table_lower[b];
// u==l、つまりもうminimax値が求まっていれば探索終了
if (u == l)
return u;
// 置換表の値を使って探索窓を狭められる場合は狭める
alpha = max(alpha, l);
beta = min(beta, u);
// 葉ノードでなければ子ノードを列挙
int coord, g, max_score = -inf, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
child_nodes[canput].value = calc_move_ordering_value(child_nodes[canput]);
++canput;
}
}
// パスの処理 手番を交代して同じ深さで再帰する
if (canput == 0) {
// 2回連続パスなら評価関数を実行
if (passed)
return evaluate(b);
b.player = 1 - b.player;
return -nega_alpha_transpose(b, depth, true, -beta, -alpha);
}
// move ordering実行
if (canput >= 2)
sort(child_nodes.begin(), child_nodes.end());
// 探索
for (const board& nb: child_nodes) {
g = -nega_alpha_transpose(nb, depth - 1, false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
alpha = max(alpha, g);
max_score = max(max_score, g);
}
if (max_score < alpha) {
// 置換表の下限値に登録 fail low
transpose_table_upper[b] = max_score;
} else {
// minimax値が求まった
transpose_table_upper[b] = max_score;
transpose_table_lower[b] = max_score;
}
return max_score;
}
// negascout法
int nega_scout(board b, int depth, bool passed, int alpha, int beta) {
++visited_nodes;
// 葉ノードでは評価関数を実行する
if (depth == 0)
return evaluate(b);
// 置換表から上限値と下限値があれば取得
int u = inf, l = -inf;
if (transpose_table_upper.find(b) != transpose_table_upper.end())
u = transpose_table_upper[b];
if (transpose_table_lower.find(b) != transpose_table_lower.end())
l = transpose_table_lower[b];
// u==l、つまりもうminimax値が求まっていれば探索終了
if (u == l)
return u;
// 置換表の値を使って探索窓を狭められる場合は狭める
alpha = max(alpha, l);
beta = min(beta, u);
// 葉ノードでなければ子ノードを列挙
int coord, g, max_score = -inf, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
child_nodes[canput].value = calc_move_ordering_value(child_nodes[canput]);
++canput;
}
}
// パスの処理 手番を交代して同じ深さで再帰する
if (canput == 0) {
// 2回連続パスなら評価関数を実行
if (passed)
return evaluate(b);
b.player = 1 - b.player;
return -nega_scout(b, depth, true, -beta, -alpha);
}
// move ordering実行
if (canput >= 2)
sort(child_nodes.begin(), child_nodes.end());
// まず最善手候補を通常窓で探索
g = -nega_scout(child_nodes[0], depth - 1, false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
alpha = max(alpha, g);
max_score = max(max_score, g);
// 残りの手をnull window searchを使って高速に探索
for (int i = 1; i < canput; ++i) {
// まずはnull window search
g = -nega_alpha_transpose(child_nodes[i], depth - 1, false, -alpha - 1, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
if (g > alpha) { // 最善手候補よりも良い手が見つかった場合は再探索
alpha = g;
g = -nega_scout(child_nodes[i], depth - 1, false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
}
alpha = max(alpha, g);
max_score = max(max_score, g);
}
if (max_score < alpha) {
// 置換表の下限値に登録 fail low
transpose_table_upper[b] = max_score;
} else {
// minimax値が求まった
transpose_table_upper[b] = max_score;
transpose_table_lower[b] = max_score;
}
return max_score;
}
// depth手読みの探索
int search(board b, int depth) {
visited_nodes = 0;
transpose_table_upper.clear();
transpose_table_lower.clear();
former_transpose_table_upper.clear();
former_transpose_table_lower.clear();
// 子ノードを全列挙
int coord, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
++canput;
}
}
// 1手ずつ探索を深める
int search_depth, res, score, alpha, beta, i;
int start_depth = max(1, depth - 3); // 最初に探索する手数
for (search_depth = start_depth; search_depth <= depth; ++search_depth) {
alpha = -inf;
beta = inf;
if (canput >= 2) {
// move orderingのための値を得る
for (board &nb: child_nodes)
nb.value = calc_move_ordering_value(nb);
// move ordering実行
sort(child_nodes.begin(), child_nodes.end());
}
// 最善手候補を通常窓で探索
score = -nega_scout(child_nodes[0], search_depth - 1, false, -beta, -alpha);
alpha = score;
res = child_nodes[0].policy;
// 残りの手をnull window searchで探索
for (i = 1; i < canput; ++i) {
score = -nega_alpha_transpose(child_nodes[i], search_depth - 1, false, -alpha - 1, -alpha);
// 最善手候補よりも良い手が見つかった
if (alpha < score) {
alpha = score;
score = -nega_scout(child_nodes[i], search_depth - 1, false, -beta, -alpha);
res = child_nodes[i].policy;
}
alpha = max(alpha, score);
}
cerr << "searched depth " << search_depth << " policy " << res << " visited nodes " << visited_nodes << endl;
transpose_table_upper.swap(former_transpose_table_upper);
transpose_table_upper.clear();
transpose_table_lower.swap(former_transpose_table_lower);
transpose_table_lower.clear();
}
cerr << alpha << endl;
return res;
}
// 厳密な着手可能数
inline int calc_move_ordering_value_final(const board b){
int res = 0;
bool legal;
for (int global_place = 0; global_place < hw2; ++global_place){
legal = legal_arr[b.player][b.board_idx[place_included[global_place][0]]][local_place[place_included[global_place][0]][global_place]] ||
legal_arr[b.player][b.board_idx[place_included[global_place][1]]][local_place[place_included[global_place][1]][global_place]] ||
legal_arr[b.player][b.board_idx[place_included[global_place][2]]][local_place[place_included[global_place][2]][global_place]];
if (place_included[global_place][3] != -1)
legal |= legal_arr[b.player][b.board_idx[place_included[global_place][3]]][local_place[place_included[global_place][3]][global_place]];
res += legal;
}
return -res;
}
// move orderingと置換表つきnegaalpha法 null windows searchに使う(完全読み)
int nega_alpha_transpose_final(board b, bool passed, int alpha, int beta) {
++visited_nodes;
// 置換表から上限値と下限値があれば取得
int u = inf, l = -inf;
if (transpose_table_upper.find(b) != transpose_table_upper.end())
u = transpose_table_upper[b];
if (transpose_table_lower.find(b) != transpose_table_lower.end())
l = transpose_table_lower[b];
// u==l、つまりもうminimax値が求まっていれば探索終了
if (u == l)
return u;
// 置換表の値を使って探索窓を狭められる場合は狭める
alpha = max(alpha, l);
beta = min(beta, u);
// 葉ノードでなければ子ノードを列挙
int coord, g, max_score = -inf, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
child_nodes[canput].value = calc_move_ordering_value_final(child_nodes[canput]);
++canput;
}
}
// パスの処理 手番を交代して同じ深さで再帰する
if (canput == 0) {
// 2回連続パスなら終局
if (passed)
return endgame_evaluate(b);
b.player = 1 - b.player;
return -nega_alpha_transpose_final(b, true, -beta, -alpha);
}
// move ordering実行
if (canput >= 2)
sort(child_nodes.begin(), child_nodes.end());
// 探索
for (const board& nb: child_nodes) {
g = -nega_alpha_transpose_final(nb, false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
alpha = max(alpha, g);
max_score = max(max_score, g);
}
if (max_score < alpha) {
// 置換表の下限値に登録 fail low
transpose_table_upper[b] = max_score;
} else {
// minimax値が求まった
transpose_table_upper[b] = max_score;
transpose_table_lower[b] = max_score;
}
return max_score;
}
// negascout法(完全読み)
int nega_scout_final(board b, bool passed, int alpha, int beta) {
++visited_nodes;
// 置換表から上限値と下限値があれば取得
int u = inf, l = -inf;
if (transpose_table_upper.find(b) != transpose_table_upper.end())
u = transpose_table_upper[b];
if (transpose_table_lower.find(b) != transpose_table_lower.end())
l = transpose_table_lower[b];
// u==l、つまりもうminimax値が求まっていれば探索終了
if (u == l)
return u;
// 置換表の値を使って探索窓を狭められる場合は狭める
alpha = max(alpha, l);
beta = min(beta, u);
// 葉ノードでなければ子ノードを列挙
int coord, g, max_score = -inf, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
child_nodes[canput].value = calc_move_ordering_value_final(child_nodes[canput]);
++canput;
}
}
// パスの処理 手番を交代して同じ深さで再帰する
if (canput == 0) {
// 2回連続パスなら終局
if (passed)
return endgame_evaluate(b);
b.player = 1 - b.player;
return -nega_scout_final(b, true, -beta, -alpha);
}
// move ordering実行
if (canput >= 2)
sort(child_nodes.begin(), child_nodes.end());
// まず最善手候補を通常窓で探索
g = -nega_scout_final(child_nodes[0], false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
alpha = max(alpha, g);
max_score = max(max_score, g);
// 残りの手をnull window searchを使って高速に探索
for (int i = 1; i < canput; ++i) {
// まずはnull window search
g = -nega_alpha_transpose_final(child_nodes[i], false, -alpha - step, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
if (g > alpha) { // 最善手候補よりも良い手が見つかった場合は再探索
alpha = g;
g = -nega_scout_final(child_nodes[i], false, -beta, -alpha);
if (g >= beta) { // 興味の範囲よりもminimax値が上のときは枝刈り fail high
if (g > l) {
// 置換表の下限値に登録
transpose_table_lower[b] = g;
}
return g;
}
}
alpha = max(alpha, g);
max_score = max(max_score, g);
}
if (max_score < alpha) {
// 置換表の下限値に登録 fail low
transpose_table_upper[b] = max_score;
} else {
// minimax値が求まった
transpose_table_upper[b] = max_score;
transpose_table_lower[b] = max_score;
}
return max_score;
}
// 完全読み
int search_final(board b) {
visited_nodes = 0;
transpose_table_upper.clear();
transpose_table_lower.clear();
former_transpose_table_upper.clear();
former_transpose_table_lower.clear();
// 子ノードを全列挙
int coord, canput = 0;
vector<board> child_nodes;
for (coord = 0; coord < hw2; ++coord) {
if (b.legal(coord)) {
child_nodes.push_back(b.move(coord));
child_nodes[canput].value = calc_move_ordering_value_final(child_nodes[canput]);
++canput;
}
}
if (canput >= 2) {
// move ordering実行
sort(child_nodes.begin(), child_nodes.end());
}
int alpha = -inf, beta = inf, score, res = -1;
// 最善手候補を通常窓で探索
score = -nega_scout_final(child_nodes[0], false, -beta, -alpha);
cerr << score << endl;
alpha = score;
res = child_nodes[0].policy;
// 残りの手をnull window searchで探索
for (int i = 1; i < canput; ++i) {
score = -nega_alpha_transpose_final(child_nodes[i], false, -alpha - step, -alpha);
// 最善手候補よりも良い手が見つかった
if (alpha < score) {
alpha = score;
score = -nega_scout_final(child_nodes[i], false, -beta, -alpha);
res = child_nodes[i].policy;
}
alpha = max(alpha, score);
}
cerr << "complete search policy " << res << " visited nodes " << visited_nodes << " value " << alpha << endl;
return res;
}
int main() {
init();
int arr[64];
board b;
int ai_player, policy;
cin >> ai_player;
while (true) {
input_board(arr);
b.translate_from_arr(arr, ai_player);
cerr << b.n_stones << " " << evaluate(b) << endl;
b.print();
policy = get_book(b);
if (policy != -1) {
cout << policy / hw << " " << policy % hw << endl;
continue;
}
if (b.n_stones >= hw2 - complete_depth)
policy = search_final(b);
else
policy = search(b, 8);
cout << policy / hw << " " << policy % hw << endl;
}
return 0;
}