-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.cpp
728 lines (560 loc) · 16 KB
/
player.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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
#include "player.h"
#include "board.h"
#include <iostream>
#include <string>
#include <sstream>
#include <utility>
#include <algorithm>
#include <vector>
#include <fstream>
#define pb push_back
#define F first
#define S second
using namespace std;
ofstream outputfile("out.txt");
int best_depth =3;
string best_move;
int num=0;
pii arr[] = {{0,0}, {1,0}, {1,1}, {1,2}, {1,3}, {1,4}, {1,5}, {2,0}, {2,1}, {2,2}};
string player::generate_ring_move(board& b)
{
string str = "P ";
outputfile <<str<<endl;
for(int i=0;i<10;i++)
{
pii cordinate = b.convert(arr[i].F,arr[i].S);
if(b.isEmpty(cordinate.F,cordinate.S))
{
str+= to_string(arr[i].F) + " " + to_string(arr[i].S);
break;
}
}
outputfile << str<<endl;
return str ;
}
void print_board(board& b)
{
for(int i=0;i<=10;i++){
for(int j=0;j<=10;j++){
if(b.points[i][j]==10){
outputfile<<" "<<" ";
}
else if(b.points[i][j]==-1)
outputfile<<b.points[i][j];
else
outputfile<<" "<<b.points[i][j];
}
outputfile<<"\n";
}
}
std::vector<std::string> split(const std::string& s, char delimiter)
{
std::vector<std::string> tokens;
std::string token;
std::istringstream tokenStream(s);
while (std::getline(tokenStream, token, delimiter))
{
tokens.push_back(token);
}
return tokens;
}
void player::execute_move(int id ,string str,board& b)
{
if (str == "")
return ;
// vector< std::vector<pair<pii,pii> > > rows = b.find_row();
// std::vector<pair<pii,pii> > current_row_list ;
// std::vector<pii> ring_list ;
// if (id == 1)
// {
// current_row_list = rows.at(0);
// ring_list = b.ring_p1 ;
// }
// else
// {
// current_row_list = rows.at(1);
// ring_list = b.ring_p2 ;
// }
// while (current_row_list.size()> 0)
// {
// pair<pii,pii> selected_row = current_row_list.at(0) ;
// //correct the selected row heuristic
// b.remove_row((selected_row.F).F,(selected_row.F).S,(selected_row.S).F,(selected_row.S).S);
// //select the ring to remove
// for (int j = 0 ; j < 5 ; j++)
// {
// pii currRing = ring_list.at(j);
// if (currRing.F != 100 && currRing.S != 100)
// {
// b.remove_ring(id ,currRing.F,currRing.S); //reduntant value to current ring is set inside it ;
// break;
// }
// }
// rows = b.find_row();
// if (id == 1)
// current_row_list = rows.at(0);
// else
// current_row_list = rows.at(1);
// }
outputfile<<"execute_move:"<<str<<endl;
// print_board(b);
vector<string> token = split(str,' ');
// print_board(b);
int counter = 0;
while ((token.size() > counter) && (token[counter] =="RS") )
{
//cout << counter << "token" << endl ;
string next_step = token.at(0+counter);
int hexagon_start = stoi(token.at(1+counter));
int position_start = stoi(token.at(2+counter));
int hexagon_end = stoi(token.at(4+counter));
int position_end = stoi(token.at(5+counter));
pii row_start , row_end ,ring_remove;
row_start = b.convert(hexagon_start,position_start);
row_end = b.convert(hexagon_end,position_end);
b.remove_row(row_start.F,row_start.S,row_end.F,row_end.S);
int ring_hexagon = stoi(token.at(7+counter));
int ring_position = stoi(token.at(8+counter));
ring_remove = b.convert(ring_hexagon,ring_position);
b.remove_ring(id ,ring_remove.F,ring_remove.S);
counter += 9 ;
//cout << counter << "counter" << endl ;
}
//cout << token.size() << endl ;
if (token.size() > counter)
{
string move_type = token.at(0+counter);
string hexagon = token.at(1+counter);
string position = token.at(2+counter);
pii start = b.convert(stoi(hexagon),stoi(position));
if (move_type == "P" )
{
if (b.isEmpty(start.F,start.S) )
{
b.place_ring(id , start.F , start.S);
//print_board(b);
// cout << str << endl ;
}
else
{
// cout << "non empty position" << endl ;
return ;
}
}
else if (move_type == "S" )
{
string next_step = token.at(3+counter);
hexagon = token.at(4+counter);
position = token.at(5+counter);
pii end = b.convert(stoi(hexagon),stoi(position));
if (next_step == "M")
{
b.move_ring(id , start.F , start.S , end.F , end.S);
if (token.size() > 6)
{
next_step = token.at(6+counter);
int hexagon_start = stoi(token.at(7+counter));
int position_start = stoi(token.at(8+counter));
if (next_step == "RS")
{
int hexagon_end = stoi(token.at(10+counter));
int position_end = stoi(token.at(11+counter));
pii row_start , row_end ,ring_remove;
row_start = b.convert(hexagon_start,position_start);
row_end = b.convert(hexagon_end,position_end);
b.remove_row(row_start.F,row_start.S,row_end.F,row_end.S);
int ring_hexagon = stoi(token.at(13+counter));
int ring_position = stoi(token.at(14+counter));
ring_remove = b.convert(ring_hexagon,ring_position);
b.remove_ring(id ,ring_remove.F,ring_remove.S);
// cout << str << endl ;
}
}
// cout << str << endl ;
}
else
{
// cout << "invalid move" << endl ;
}
}
else
{
// cout << "invalid move " << endl ;
}
//check the board
// rows = b.find_row();
// if (id == 1)
// current_row_list = rows.at(0);
// else
// current_row_list = rows.at(1);
// while (current_row_list.size() > 0)
// {
// pair<pii,pii> selected_row = current_row_list.at(0) ;
// //correct the selected row heuristic
// b.remove_row((selected_row.F).F,(selected_row.F).S,(selected_row.S).F,(selected_row.S).S);
// //select the ring to remove
// for (int j = 0 ; j < 5 ; j++)
// {
// pii currRing = ring_list.at(j);
// if (currRing.F != 100 && currRing.S != 100)
// {
// b.remove_ring(id ,currRing.F,currRing.S);
// break;
// }
// }
// //updating rows to remove
// rows = b.find_row();
// if (id == 1)
// current_row_list = rows.at(0);
// else
// current_row_list = rows.at(1);
// }
// print_board(b);
}
}
vector<string> player::generate_initial_removal(int id, board& b)
{
vector<pii> initial_rings ;
if (id == 1)
{
initial_rings = b.ring_p1;
}
else
{
initial_rings = b.ring_p2 ;
}
vector<pair<pii,pii > > initial_rows = (b.find_row()).at(id-1);
vector<string> initial_removal;
vector<string> first ;
//cout << initial_rows.size() << endl ;
for (int i = 0 ; i < initial_rows.size() ; i++)
{
pair<pii,pii > first_pickup = initial_rows[i] ;
//cout<<"checkpoint1"<<endl;
for (int j = 0 ; j < initial_rings.size() ; j++)
{
string prefix = "";
pii current_ring = initial_rings[j];
if(current_ring.F!=100)
{
pii hexaStart = b.to_hexagon((first_pickup.F).F,(first_pickup.F).S);
pii hexaEnd = b.to_hexagon((first_pickup.S).F,(first_pickup.S).S);
prefix += "RS " + to_string(hexaStart.F) + " " + to_string(hexaStart.S) + " RE " + to_string(hexaEnd.F) + " " + to_string(hexaEnd.S) + " X";
pii hexaRing = b.to_hexagon(current_ring.F,current_ring.S);
prefix += " " + to_string(hexaRing.F) + " " + to_string(hexaRing.S);
//prefix += " ";
first.push_back(prefix) ;
}
}
}
//cout<<"checkpoint2"<<endl;
board copy(b);
//cout<<"checkpoint3"<<endl;
vector<string> second ;
for (int i = 0 ; i < first.size(); i++)
{
//cout<<"checkpoint4"<<first[i]<<endl;
execute_move(id,first[i],copy);
//cout<<"checkpoint5"<<first[i]<<endl;
vector<pair<pii,pii > > remaining_rows = (copy.find_row()).at(id-1);
//cout << remaining_rows.size() << endl ;
//cout << first[i] << "first" << endl ;
if (id == 1)
{
initial_rings = copy.ring_p1;
}
else
{
initial_rings = copy.ring_p2 ;
}
if (remaining_rows.size()!=0)
{
for (int j = 0 ; j < initial_rings.size() ; j++)
{
pii current_ring = initial_rings[j];
if(current_ring.F!=100)
{
string prefix = "";
pair<pii,pii> initial_marker = remaining_rows[0];
pii hexaStart = b.to_hexagon((initial_marker.F).F,(initial_marker.F).S);
pii hexaEnd = b.to_hexagon((initial_marker.S).F,(initial_marker.S).S);
prefix += "RS " + to_string(hexaStart.F) + " " + to_string(hexaStart.S) + " RE " + to_string(hexaEnd.F) + " " + to_string(hexaEnd.S) + " X";
pii hexaRing = b.to_hexagon(current_ring.F,current_ring.S);
prefix += " " + to_string(hexaRing.F) + " " + to_string(hexaRing.S);
//cout << prefix << endl ;
second.push_back(first[i]+" "+prefix);
}
}
}
else
{
second.push_back(first[i]);
}
}
initial_removal = second;
if (initial_removal.size() == 0)
{
string space = "";
initial_removal.push_back(space);
}
return initial_removal;
}
vector<string> player::generate_simple_moves(int id ,board& b)
{
int direction_x[] = {0,0,1,-1,1,-1};
int direction_y[] = {1,-1,0,0,1,-1};
vector<string> neighbours ;
if (id == 1)
{
if (b.flag1 == 0 )
{
return generate_ring_place(b);
}
}
else
{
if (b.flag2 == 0 )
{
return generate_ring_place(b);
}
}
//starting pii should be ring
for (int i = 0 ; i < 5 ; i++)
{
//take a ring pii and
pii starting ;
if (id == 1)
{
starting = (b.ring_p1).at(i);
}
else
{
starting = (b.ring_p2).at(i);
}
//check it is a valid ring ?
if (starting.F!=100)
{
pii initial_hexagon = b.to_hexagon(starting.F,starting.S);
//traverse in 6 directions
for(int j = 0 ; j < 6 ; j++)
{
int marker_crossed = 0; // signifying marker has crossed or not
int new_x = starting.F + direction_x[j];
int new_y = starting.S + direction_y[j];
while(b.isValid(new_x,new_y)==true)
{
pii end ;
end.F = new_x ;
end.S = new_y ;
if (b.isEmpty(new_x , new_y) == true )
{
pii end_hexagon = b.to_hexagon(end.F,end.S);
string new_move = "";
new_move += "S";
new_move += ( " " + to_string(initial_hexagon.F) + " " + to_string(initial_hexagon.S));
new_move += " M " + to_string(end_hexagon.F) +" " + to_string(end_hexagon.S);
//checking the board after this move ;
// board copyboard(b) ;
// execute_move(id,new_move,copyboard);
// vector<pair<pii,pii> > sequence = (copyboard.find_row()).at(id-1) ;
// // cout << sequence.size() << endl ;
// for (int k = 0 ; k < sequence.size() ; k++)
// {
// // new_move += " RS " + to_string(hexaStart.F) + " " + to_string(hexaStart.S) + " RE " + to_string(hexaEnd.F) + " " + to_string(hexaEnd.S) + " X";
// //possibles ring which could be removed
// vector<pii> rings_removed ;
// if (id == 1)
// rings_removed = copyboard.ring_p1;
// else
// rings_removed = copyboard.ring_p2;
// for(int l = 0 ; l < rings_removed.size() ; l++)
// {
// pii current_ring = rings_removed.at(l);
// if (current_ring.F != 100)
// {
// string rest = "";
// pair<pii,pii> toRemove = sequence.at(k);
// pii hexaStart = b.to_hexagon((toRemove.F).F,(toRemove.F).S);
// pii hexaEnd = b.to_hexagon((toRemove.S).F,(toRemove.S).S);
// rest += " RS " + to_string(hexaStart.F) + " " + to_string(hexaStart.S) + " RE " + to_string(hexaEnd.F) + " " + to_string(hexaEnd.S) + " X";
// pii hexaRing = b.to_hexagon(current_ring.F,current_ring.S);
// rest += " " + to_string(hexaRing.F) + " " + to_string(hexaRing.S);
// // new_move += " " + to_string(hexaRing.F) + " " + to_string(hexaRing.S);
// string st = new_move + rest;
// neighbours.push_back(st);
// }
// }
//string st = new_move + rest;
//b.remove_row()
//neighbours.push_back(st);
// cout << new_move << endl ;
// }
// if(sequence.size()==0)
neighbours.push_back(new_move);
if (marker_crossed == 1)
{
break ;
}
}
if (b.value(new_x,new_y) == 3 || b.value(new_x,new_y) == 4 )
{
break; //ring encountered
}
else if (b.value(new_x,new_y) == 0 || b.value(new_x,new_y) == 1 )
{
marker_crossed = 1;
}
new_x += direction_x[j];
new_y += direction_y[j];
}
}
}
}
if (neighbours.size() == 0 )
{
string space = "";
neighbours.push_back(space);
}
return neighbours ;
}
vector<string> player::generate_neighbour(int id ,board& b)
{
vector<string> ans ;
cout << "he" << endl ;
vector<string> v = generate_initial_removal(id , b) ;
cout << "there" << endl ;
for (int i = 0 ; i < v.size() ; i++)
{
board copy(b);
execute_move(id,v[i],copy);
cout << "rhere" << endl ;
vector<string> s = generate_simple_moves(id , copy);
cout << "here" << endl ;
cout << s.size() << endl ;
for (int j = 0 ; j < s.size() ; j++)
{
board copy2(copy);
execute_move(id,s[j],copy);
vector<string> r = generate_initial_removal(id,copy2);
//ans.push_back(v[i]+ " " + s[j]);
for (int k = 0 ; k < r.size() ; k++ )
{
if (v[i]!= "")
ans.push_back(v[i]+ " " + s[j] + " " +r[k]);
else
ans.push_back(s[j] + " " +r[k]);
}
}
}
return ans ;
}
vector<string> player::generate_ring_place(board& b)
{
vector<string> places ;
string point ;
if (b.isEmpty(0,0))
{
point = "P 0 0" ;
}
places.push_back(point);
//0 is invalid move so check that
//added statement for invalid check for hexagon 5
for(int i = 1 ; i <= 5 ; i++ )
{
int hexagon = i;
for (int j = 0 ; j < 6*i ; j++)
{
int position = j ;
pii current = b.convert(hexagon,position);
if (b.isEmpty(current.F,current.S)== true)
{
point = "P " + to_string(i) + " " + to_string(j);
places.push_back(point);
}
}
}
return places;
}
// string best_ring(vector<pii> positions , board b)
// {
// pii best = b.best_ring_place(positions);
// pii hexa = b.to_hexagon(best.F,best.S);
// //generating string format of move ;
// string finale = "P " ;
// finale.append(to_string(hexa.F));
// finale.append(" ");
// finale.append(to_string(hexa.S));
// return finale;
// }
double player::maxim(int id, board& b, int depth)
{
int next_player;
if(id==1) next_player=2;
else next_player=1;
double max_score= -100.0,present_score;
if(depth==0){
pair<double,double> pr = b.score();
if(id==1) present_score = pr.F;
else present_score = pr.S;
return present_score;
}
vector<string> nb = generate_neighbour(id,b);
num = num + nb.size();
for(int i=0;i<nb.size();i++){
board copy_board(b);
execute_move(id,nb[i],copy_board);
// present_score = copy_board.score();
present_score = minim(next_player,copy_board,depth-1);
if(present_score>max_score){
if(depth==best_depth)
best_move = nb[i];
outputfile<<best_move<<"bestbest"<<endl;
max_score = present_score;
}
}
return max_score;
}
double player::minim(int next_player, board& b, int depth)
{
int id;
if(next_player==1) id=2;
else id=1;
double min_score=1000,present_score;
if(depth==0){
pair<double,double> pr = b.score();
if(id==1) present_score = pr.F;
else present_score = pr.S;
return present_score;
}
vector<string> nb = generate_neighbour(next_player,b);
num = num + nb.size();
// double min_score=100.0,present_score;
// string best_move;
for(int i=0;i<nb.size();i++){
board copy_board(b);
execute_move(next_player,nb[i],copy_board);
// present_score = copy_board.score();
present_score = maxim(id,copy_board,depth-1);
if(present_score<min_score){
// best_move = nb[i];
min_score = present_score;
}
}
return min_score;
}
string player::generate_move(int id, board& b)
{
string str;
outputfile<<"start"<<endl;
if(b.flag1==0 && id==1)
str = generate_ring_move(b);
else if(b.flag2==0 && id==2)
str = generate_ring_move(b);
else{
double dd = maxim(id,b,best_depth);
str = best_move;
// cout<<"fuck"<<best_move<<" "<< num<< endl;
}
outputfile<<str<<endl;
return str;
}