-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDmitriiAlekhin.java
1708 lines (1448 loc) · 50 KB
/
DmitriiAlekhin.java
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* Assignment 1 main class.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
*/
public class DmitriiAlekhin {
public static void main(String[] args) {
try {
if (args.length == 0) {
InputHelper.tryInitAndParse();
var points = InputHelper.getPoints();
var scenario = InputHelper.getScenario();
var game = new GameData(points);
var backtracking = new Backtracking(game, scenario);
var startMillis = System.currentTimeMillis();
OutputHelper.printResult(
OutputHelper.BACKTRACKING_OUT,
backtracking.run(),
System.currentTimeMillis() - startMillis
);
var aStar = new AStar(new GameData(points), scenario);
startMillis = System.currentTimeMillis();
OutputHelper.printResult(
OutputHelper.A_STAR_OUT,
aStar.run(),
System.currentTimeMillis() - startMillis
);
} else if (args[0].equals("-t") || args[0].equals("--test"))
TestHelper.run(1000);
} catch (Exception e) {
System.out.println("Exception occurred!");
System.out.println("Message: " + e.getMessage());
System.out.println("Stacktrace: ");
e.printStackTrace();
}
}
}
/**
* Cell interface containing useful default methods for any derived cell type.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
*/
interface Cell {
/**
* Compares cell's class with the given class. Used to determine
* if the cell belongs to the group specified by class.
*
* @param cls Cell enum
* @return true if the class is identical to cls
*/
default boolean isTypeOf(Class<?> cls) {
return this.getClass() == cls;
}
/**
* Determines if the cell is safe to step on.
*
* @return true if the cell is safe to step on, false otherwise
*/
default boolean isSafe() {
return this instanceof ObjectCell || this == AirCell.FREE;
}
/**
* Determines if the cell is free to step on / spawn.
*
* @return true if the cell is free to step on / spawn, false otherwise
*/
default boolean isFree() {
return this.isTypeOf(AirCell.class);
}
}
/**
* Air cells (i.e. not containing objects like enemies, tortuga, or chest).
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Cell
*/
enum AirCell implements Cell {
PERCEPTION,
FREE
}
/**
* Enemy cells.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Cell
*/
enum EnemyCell implements Cell {
DAVY_JONES
}
/**
* Kraken family cells. They are also considered as removable enemy cells excluding Rock :).
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Cell
*/
enum KrakenEnemiesFamilyCell implements Cell {
KRAKEN,
ROCK,
KRAKEN_ROCK
}
/**
* Other object cells. Jack Sparrow can visit them safely.
* Includes the exit - chest.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Cell
*/
enum ObjectCell implements Cell {
TORTUGA,
CHEST
}
/**
* 9x9 matrix representation.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see GameData
* @see Point
* @see Cloneable
*/
class Matrix implements Cloneable {
/**
* 9x9 Point matrix
*
* @see Point
*/
private Point[][] matrix = new Point[9][9];
/**
* Initialization of an empty matrix.
*/
public Matrix() {
for (int y = 0; y < 9; y++)
matrix[y] = new Point[9];
for (int y = 0; y < 9; y++)
for (int x = 0; x < 9; x++)
matrix[x][y] = new Point(x, y);
}
/**
* Returns the point by the coordinates if it exists.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return point by the coordinates if it exists, <code>Optional.empty()</code> otherwise.
*/
public Optional<Point> getPoint(int x, int y) {
if (y < 0 || y >= 9 || x < 0 || x >= 9) return Optional.empty();
return Optional.of(matrix[x][y]);
}
/**
* Returns available (size=[2, 4]) Von-Neumann neighbors of the point by its coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return opened stream of available Von-Neumann neighbors of the point.
*/
public Stream<Point> neighbors(int x, int y) {
return Stream.of(
getPoint(x, y + 1), getPoint(x, y - 1),
getPoint(x + 1, y), getPoint(x - 1, y)
)
.filter(Optional::isPresent)
.map(Optional::get);
}
/**
* Returns available (size=[1, 4]) diagonal neighbors of the point by its coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return opened stream of available diagonal neighbors of the point.
*/
public Stream<Point> corners(int x, int y) {
return Stream.of(
getPoint(x + 1, y + 1), getPoint(x + 1, y - 1),
getPoint(x - 1, y + 1), getPoint(x - 1, y - 1)
)
.filter(Optional::isPresent)
.map(Optional::get);
}
/**
* Returns available (size=[2, 4]) 2nd-order Von-neumann neighbors of the point by its coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return opened stream of available 2nd-order Von-neumann neighbors of the point.
* @see AStar
*/
public Stream<Point> secondNeighbors(int x, int y) {
return Stream.of(
getPoint(x, y + 2), getPoint(x, y - 2),
getPoint(x + 2, y), getPoint(x - 2, y)
)
.filter(Optional::isPresent)
.map(Optional::get);
}
/**
* First scenario moves.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return stream of neighbors + corners of the given point.
*/
public Stream<Point> firstScenario(int x, int y) {
return Stream.concat(neighbors(x, y), corners(x, y));
}
@Override
public String toString() {
var builder = new StringBuilder("-".repeat(19)).append("\n ");
for (int i = 0; i < 8; i++)
builder.append(i).append(" ");
builder.append(8).append("\n");
for (int y = 0; y < 9; y++) {
builder.append(y).append(" ");
for (int x = 0; x < 8; x++)
builder.append(matrix[y][x].isPath() ? "*" : "_").append(" ");
builder.append(matrix[y][8].isPath() ? "*" : "_").append("\n");
}
builder.append("-".repeat(19));
return builder.toString();
}
@Override
public Matrix clone() {
try {
var clone = (Matrix) super.clone();
clone.matrix = new Point[9][9];
for (int i = 0; i < 9; i++)
clone.matrix[i] = new Point[9];
for (int y = 0; y < 9; y++)
for (int x = 0; x < 9; x++)
clone.matrix[x][y] = matrix[x][y].clone();
return clone;
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
}
/**
* Point representation.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Matrix
*/
class Point implements Cloneable {
/**
* X-coordinate.
*/
private final int x;
/**
* Y-coordinate.
*/
private final int y;
/**
* Flag indicating if this point is included into the path.
*/
private boolean path = false;
/**
* Point's cell type. Free for default.
*/
private Cell cell = AirCell.FREE;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public boolean isPath() {
return path;
}
public Cell getCell() {
return cell;
}
public void setPath(boolean path) {
this.path = path;
}
public void setCell(Cell cell) {
this.cell = cell;
}
@Override
public Point clone() {
try {
var clone = (Point) super.clone();
clone.cell = cell;
clone.path = path;
return clone;
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
var point = (Point) o;
return x == point.x && y == point.y;
}
@Override
public int hashCode() {
return Objects.hash(x, y);
}
@Override
public String toString() {
return String.format("[%d,%d]", getX(), getY());
}
}
/**
* Sea map generator class.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Backtracking
* @see AStar
*/
class GameData implements Cloneable {
/**
* Random numbers generator.
*/
private static final Random RANDOM = new Random();
/**
* 9x9 points matrix.
*/
private Matrix matrix = new Matrix();
/**
* Jack Sparrow (Main hero) initial spawn coordinates.
*/
private Point jackSparrow;
/**
* Davy Jones (Enemy) initial spawn coordinates.
*/
private Point davyJones;
/**
* Kraken (Removable Enemy) initial spawn coordinates.
*/
private Point kraken;
/**
* Rock (Enemy) initial spawn coordinates.
*/
private Point rock;
/**
* Chest (Exit) initial spawn coordinates.
*/
private Point chest;
/**
* Tortuga (Island, grants ability to kill kraken after visiting) initial spawn coordinates.
*/
private Point tortuga;
/**
* Tries to spawn an enemy by the given coordinates.
*
* @param cell enemy cell.
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
* @see EnemyCell
*/
private boolean trySetEnemy(Cell cell, int x, int y) {
if (matrix.getPoint(x, y).isPresent()) {
var point = matrix.getPoint(x, y).get();
var matrixCell = point.getCell();
if (matrixCell.isFree() || cell == matrixCell) {
point.setCell(cell);
return true;
}
}
return false;
}
/**
* Tries to spawn a safe object by the given coordinates.
*
* @param cell safe object cell.
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
* @see ObjectCell
*/
private boolean trySetObject(Cell cell, int x, int y) {
if (matrix.getPoint(x, y).isPresent()) {
var point = matrix.getPoint(x, y).get();
var matrixCell = point.getCell();
if (matrixCell.isFree() && matrixCell.isSafe() || cell == matrixCell) {
point.setCell(cell);
return true;
}
}
return false;
}
/**
* Tries to spawn an air by the given coordinates. Ignores unsuccessful tries.
*
* @param cell air cell.
* @param x x-coordinate.
* @param y y-coordinate.
* @see AirCell
*/
private void trySetAir(Cell cell, int x, int y) {
trySetEnemy(cell, x, y);
}
/**
* Tries to spawn Jack Sparrow by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
private boolean trySetJackSparrow(int x, int y) {
if (matrix.getPoint(x, y).isPresent()) {
var cell = matrix.getPoint(x, y).get().getCell();
if (cell.isFree() || cell == ObjectCell.TORTUGA) {
jackSparrow = matrix.getPoint(x, y).get();
return true;
}
}
return false;
}
/**
* Tries to spawn Davy Jones by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
private boolean trySetDavyJones(int x, int y) {
if (trySetEnemy(EnemyCell.DAVY_JONES, x, y)) {
if (matrix.getPoint(x, y).isPresent()) {
matrix.neighbors(x, y).forEach(c -> trySetAir(AirCell.PERCEPTION, c.getX(), c.getY()));
matrix.corners(x, y).forEach(c -> trySetAir(AirCell.PERCEPTION, c.getX(), c.getY()));
davyJones = matrix.getPoint(x, y).get();
return true;
}
}
return false;
}
/**
* Tries to spawn Davy Jones by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
public boolean trySetKraken(int x, int y) {
if (matrix.getPoint(x, y).isPresent()) {
var point = matrix.getPoint(x, y).get();
var matrixCell = point.getCell();
var newCell = matrixCell == KrakenEnemiesFamilyCell.ROCK
? KrakenEnemiesFamilyCell.KRAKEN_ROCK
: KrakenEnemiesFamilyCell.KRAKEN;
if (matrixCell.isTypeOf(KrakenEnemiesFamilyCell.class) || matrixCell.isFree()) {
point.setCell(newCell);
matrix.neighbors(x, y).forEach(c -> trySetAir(AirCell.PERCEPTION, c.getX(), c.getY()));
kraken = matrix.getPoint(x, y).get();
return true;
}
}
return false;
}
/**
* Tries to remove Kraken from the map.
* Ignores unsuccessful tries (i.e. Kraken is already removed / not spawned).
*/
public void tryRemoveKraken() {
if (kraken == null) return;
var newCell = kraken.getCell() == KrakenEnemiesFamilyCell.KRAKEN_ROCK
? KrakenEnemiesFamilyCell.ROCK
: AirCell.FREE;
kraken.setCell(newCell);
var optPoint = matrix.getPoint(kraken.getX(), kraken.getY());
optPoint.ifPresent(point -> point.setCell(newCell));
matrix.neighbors(kraken.getX(), kraken.getY()).forEach(c -> trySetAir(AirCell.FREE, c.getX(), c.getY()));
// Force update DavyJones perception zones in order to restore some of them
// After Kraken removal
trySetDavyJones(davyJones.getX(), davyJones.getY());
}
/**
* Tries to spawn Rock by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
private boolean trySetRock(int x, int y) {
if (matrix.getPoint(x, y).isPresent()) {
var point = matrix.getPoint(x, y).get();
var matrixCell = point.getCell();
var newCell = matrixCell == KrakenEnemiesFamilyCell.KRAKEN
? KrakenEnemiesFamilyCell.KRAKEN_ROCK
: KrakenEnemiesFamilyCell.ROCK;
if (matrixCell.isTypeOf(KrakenEnemiesFamilyCell.class) || matrixCell.isFree()) {
point.setCell(newCell);
rock = point;
return true;
}
}
return false;
}
/**
* Tries to spawn chest by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
private boolean trySetChest(int x, int y) {
if (trySetObject(ObjectCell.CHEST, x, y)) {
if (matrix.getPoint(x, y).isPresent()) {
chest = matrix.getPoint(x, y).get();
return true;
}
}
return false;
}
/**
* Tries to spawn Tortuga by the given coordinates.
*
* @param x x-coordinate.
* @param y y-coordinate.
* @return true if the spawn result is success, false otherwise.
*/
private boolean trySetTortuga(int x, int y) {
if (trySetObject(ObjectCell.TORTUGA, x, y)) {
if (matrix.getPoint(x, y).isPresent()) {
tortuga = matrix.getPoint(x, y).get();
return true;
}
}
return false;
}
/**
* Tries to mark the point as "included to the path" by the given coordinates.
* Ignores unsuccessful tries
*
* @param x x-coordinate.
* @param y y-coordinate.
*/
public void setPath(int x, int y) {
matrix.getPoint(x, y).ifPresent(p -> p.setPath(true));
}
/**
* Tries to mark the point as "NOT included to the path" by the given coordinates.
* Ignores unsuccessful tries
*
* @param x x-coordinate.
* @param y y-coordinate.
*/
public void unsetPath(int x, int y) {
matrix.getPoint(x, y).ifPresent(p -> p.setPath(false));
}
/**
* Generates a random integer in the range [0, 8].
*
* @return random integer in the range [0, 8].
*/
private Point getRandomPoint() {
var optPos = matrix.getPoint(RANDOM.nextInt(0, 9), RANDOM.nextInt(0, 9));
if (optPos.isEmpty() || (optPos.get().getX() == 0 && optPos.get().getY() != 0))
return getRandomPoint();
return optPos.get();
}
/**
* Generates a sea map with respect to the given points.
*
* @param points Parsed coordinates from the input.
* @throws IllegalArgumentException if any point is incorrect with respect to the game rules.
*/
public GameData(List<Point> points) {
var generationResult = Stream.of(
trySetDavyJones(points.get(1).getX(), points.get(1).getY()),
trySetKraken(points.get(2).getX(), points.get(2).getY()),
trySetRock(points.get(3).getX(), points.get(3).getY()),
trySetChest(points.get(4).getX(), points.get(4).getY()),
trySetTortuga(points.get(5).getX(), points.get(5).getY()),
trySetJackSparrow(points.get(0).getX(), points.get(0).getY())
).allMatch(x -> x);
if (!generationResult)
throw new IllegalArgumentException("Failed to spawn game entities!");
}
/**
* Generates a sea map with random valid coordinates. Jack Sparrow is always spawned
* at (0, 0) point.
*/
public GameData() {
var optPoint = matrix.getPoint(0, 0);
optPoint.ifPresent(point -> trySetJackSparrow(point.getX(), point.getY()));
var point = getRandomPoint();
while (!trySetDavyJones(point.getX(), point.getY()))
point = getRandomPoint();
point = getRandomPoint();
while (!trySetKraken(point.getX(), point.getY()))
point = getRandomPoint();
point = getRandomPoint();
while (!trySetRock(point.getX(), point.getY()))
point = getRandomPoint();
point = getRandomPoint();
while (!trySetChest(point.getX(), point.getY()))
point = getRandomPoint();
point = getRandomPoint();
while (!trySetTortuga(point.getX(), point.getY()))
point = getRandomPoint();
}
public Matrix getMatrix() {
return matrix;
}
public Point getJackSparrow() {
return jackSparrow;
}
public Point getKraken() {
return kraken;
}
public Point getChest() {
return chest;
}
public Point getTortuga() {
return tortuga;
}
@Override
public String toString() {
return matrix.toString();
}
@Override
public GameData clone() {
try {
var clone = (GameData) super.clone();
clone.matrix = matrix.clone();
clone.chest = chest;
clone.davyJones = davyJones;
clone.jackSparrow = jackSparrow;
clone.kraken = kraken;
clone.rock = rock;
clone.tortuga = tortuga;
return clone;
} catch (CloneNotSupportedException e) {
throw new AssertionError();
}
}
}
/**
* Stores the most successful (during the algorithm execution, not always)
* result of algorithm's run from start to target. Nullable.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Backtracking
* @see AStar
* @see OutputHelper
*/
class Snapshot {
/**
* Shortest path points from start to target.
*/
private List<Point> steps;
/**
* GameData copy.
*/
private GameData gameData;
public Snapshot(List<Point> steps, GameData gameData) {
this.steps = steps;
this.gameData = gameData;
}
public List<Point> getSteps() {
return steps;
}
public void setSteps(List<Point> steps) {
this.steps = steps;
}
public GameData getGameData() {
return gameData;
}
public void setGameData(GameData gameData) {
this.gameData = gameData;
}
@Override
public String toString() {
var shortestPathString = steps.stream()
.map(Point::toString)
.collect(Collectors.joining(" "));
return String.format("%d\n%s\n%s", steps.size(), shortestPathString, gameData.getMatrix());
}
}
/**
* Common logic for searching algorithms with respect to game rules.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see Backtracking
* @see AStar
* @see TestHelper
*/
abstract class SearchingAlgorithm {
/**
* Current game data during the execution of a partial run from start to target.
*/
protected GameData gameData;
/**
* Game scenario
*/
protected final int scenario;
/**
* Stores the current snapshot during the execution of a partial run from start to target.
*/
protected Snapshot currentSnapshot;
/**
* Stores the current path steps during the execution of a partial run from start to target.
*/
protected final Stack<Point> steps = new Stack<>();
/**
* Target point (Tortuga + Kraken + Chest run or just Chest run)
*/
protected Point target;
/**
* Stores the minimum steps count over a run from start to target.
*/
protected int minStepsCount = Integer.MAX_VALUE;
/**
* Performs runs from Tortuga to Kraken's weak points (corners).
* Returns a list of these runs sorted by path length.
*
* @param tortugaGameData game map with already executed run spawn->tortuga.
* @return list of runs tortuga->kraken_weak_point sorted by run's path in ascending order.
*/
private List<Snapshot> krakenCornersRuns(GameData tortugaGameData) {
return gameData.getMatrix().corners(gameData.getKraken().getX(), gameData.getKraken().getY())
.map(p -> partialRun(gameData.getTortuga(), p, tortugaGameData.clone()))
.filter(Objects::nonNull)
.sorted(Comparator.comparingInt(s -> s.getSteps().size()))
.toList();
}
/**
* Indicates if the point is dangerous.
*
* @param point current point.
* @return true if the point is dangerous, false otherwise.
*/
protected boolean isLosing(Point point) {
return !point.getCell().isSafe();
}
/**
* Takes the snapshot.
*/
protected void takeSnapshot() {
if (currentSnapshot == null || currentSnapshot.getSteps().size() > steps.size())
currentSnapshot = new Snapshot(new ArrayList<>(steps), gameData.clone());
else {
currentSnapshot.setSteps(steps);
currentSnapshot.setGameData(gameData);
}
}
/**
* Takes the snapshot with the custom data.
*
* @param steps custom steps.
* @param gameData custom game data.
*/
protected void takeSnapshot(List<Point> steps, GameData gameData) {
if (currentSnapshot == null)
currentSnapshot = new Snapshot(steps, gameData);
else {
currentSnapshot.setSteps(steps);
currentSnapshot.setGameData(gameData);
}
}
public SearchingAlgorithm(GameData gameData, int scenario) {
this.gameData = gameData;
this.scenario = scenario;
}
/**
* Performs run from defined <code>start</code> and <code>target</code> points.
*
* @param start start point, not included to the path.
* @param target target point, included to the path.
* @param gameData game data.
* @return resulting snapshot of the run (nullable).
*/
public abstract Snapshot partialRun(Point start, Point target, GameData gameData);
/**
* Preforms 2 complete runs and chooses the best one.
* <ol>
* <li>start->tortuga + tortuga->best_kraken + kraken->chest</li>
* <li>start->chest without tortuga</li>
* </ol>
* <p>
* Best_kraken run is the best run from Tortuga to the one of Kraken's corners.
*/
public Snapshot run() {
var initialGameData = gameData.clone();
var tortugaRun = partialRun(gameData.getJackSparrow(), gameData.getTortuga(), initialGameData.clone());
Snapshot combinedRun = null;
if (tortugaRun != null) {
var tortugaStartData = tortugaRun.getGameData().clone();
var krakenRuns = krakenCornersRuns(tortugaStartData);
var finalKrakenRun = krakenRuns.isEmpty() ? null : krakenRuns.get(0);
if (finalKrakenRun != null) {
var krakenStartData = finalKrakenRun.getGameData().clone();
krakenStartData.tryRemoveKraken();
if (!finalKrakenRun.getSteps().isEmpty()) {
var nearKraken = finalKrakenRun.getSteps().get(finalKrakenRun.getSteps().size() - 1);
var chestRun = partialRun(nearKraken, gameData.getChest(), krakenStartData);
if (chestRun != null) {
var combinedList = new ArrayList<>(tortugaRun.getSteps());
combinedList.addAll(finalKrakenRun.getSteps());
combinedList.addAll(chestRun.getSteps());
takeSnapshot(combinedList, chestRun.getGameData());
combinedRun = currentSnapshot;
currentSnapshot = null;
}
}
}
}
var immediateRun = partialRun(gameData.getJackSparrow(), gameData.getChest(), initialGameData);
var result = Stream.of(combinedRun, immediateRun)
.filter(Objects::nonNull)
.sorted(Comparator.comparingInt(p -> p.getSteps().size()))
.toList();
return result.isEmpty() ? null : result.get(0);
}
}
/**
* Backtracking algorithm over a sea map. Uses greedy point selection and basic heuristic
* as the optimizations.
*
* @author Dmitrii Alekhin (B21-03 [email protected] / @dmfrpro (Telegram))
* @see GameData
* @see Snapshot
* @see Point
* @see SearchingAlgorithm
*/
class Backtracking extends SearchingAlgorithm {
/**
* Heuristic storage. Heuristic is given as a <code>distanceSquared(target)</code>
* for each point.
*/
private final int[][] costs = new int[9][9];
/**
* Returns available moves excluding dangerous (except for Kraken), previously observed ones,
* and those which have less cost than computed current;
* in a list sorted by the distance to the target (greedy approach).
*
* @param point current point.
* @return available moves.
*/
private List<Point> moves(Point point) {
return gameData.getMatrix().firstScenario(point.getX(), point.getY())
.filter(p -> p.getCell().isSafe())
.filter(p -> costs[p.getX()][p.getY()] >= steps.size())
.sorted((p1, p2) -> distanceSquared(p1) - distanceSquared(p2))
.toList();