-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.js
589 lines (568 loc) · 17 KB
/
solution.js
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
// #region imports
const fs = require("fs").promises;
// #endregion imports
// #region Common Functions
const disableLogInFunctions = ["noteThePosition"];
const DEBUG_MODE = true;
const printLog = function () {
if (disableLogInFunctions.includes(arguments[0]) || !DEBUG_MODE) {
return;
}
console.log(Array.from(arguments).join("\n"));
};
// #endregion Common Functions
// #region variables
const inputsFromCLI = process.argv.slice(2);
printLog("Command inputs: ", inputsFromCLI);
const inputFileName = inputsFromCLI[0];
const outputFileName = inputsFromCLI[1];
let gridRowsSize = 0;
let gridColsSize = 0;
let grid;
let discardSymbols = [" "];
let bearPositions = [];
let sharkPositions = [];
let wallPositions = [];
let fishPositions = [];
let snowPositions = [];
let totalValidCells = 0;
const symbolToName = {
"*": "fish",
0: "snow",
S: "shark",
U: "bear",
"#": "wall"
};
const symbolToPositionsArray = {
fish: fishPositions,
snow: snowPositions,
shark: sharkPositions,
bear: bearPositions,
wall: wallPositions
};
let penguPosition = [0, 0];
const directions = [
undefined, // no move
[1, -1], // bottom-left
[1, 0], // bottom
[1, 1], // bottom-right
[0, -1], // left
undefined, // no move
[0, 1], // right
[-1, -1], // top-left
[-1, 0], // top
[-1, 1] // top-right
];
const directionNames = [
"no move",
"bottom-left",
"bottom",
"bottom-right",
"left",
"no move",
"right",
"top-left",
"top",
"top-right"
];
const antiDirections = {
"no move": 0,
"bottom-left": 9, //"top-right",
bottom: 8, //"top",
"bottom-right": 7, //"top-left",
left: 6, //"right",
"no move": 5, // "no move",
right: 4, //"left",
"top-left": 3, //"bottom-right",
top: 2, //"bottom",
"top-right": 1 // "bottom-left"
};
// #endregion variables
// #region helper functions
const getNewCellState = function () {
const cellState = directionNames.reduce((acc, curr) => {
acc[curr] = "SAFE";
return acc;
}, {});
cellState.visited_freq = 0;
return cellState;
};
const noteThePosition = function (symbol, rowPosition, colPosition) {
printLog(
`noteThePosition`,
`Symbol:${symbol}`,
`rowPosition: ${rowPosition}`,
`colPosition: ${colPosition}`
);
if (symbol === "P") {
penguPosition = [rowPosition, colPosition];
return;
}
symbolToPositionsArray[symbolToName[symbol]].push([rowPosition, colPosition]);
};
const extractGridPositions = function (gridStrings) {
printLog("extractGridPositions", gridStrings.join("\n"));
gridStrings.forEach((eachLine, rowPosition) => {
const gridCells = eachLine.split("");
gridCells.forEach((symbol, colPosition) => {
if (discardSymbols.includes(symbol)) {
return;
}
noteThePosition(symbol, rowPosition, colPosition);
});
});
};
const countTotalValidCells = function () {
for (let i = 1; i < gridRowsSize; i++) {
for (let j = 1; j < gridColsSize; j++) {
if (
!checkAMoveIsInvalid([i, j]) &&
getValidPositions([i, j]).length > 0
) {
totalValidCells++;
}
}
}
};
const doesPositionHasGivenItem = function (position, item) {
const truthValue = symbolToPositionsArray[item].some((eachItemPosition) => {
return (
eachItemPosition[0] === position[0] && eachItemPosition[1] === position[1]
);
});
return truthValue;
};
const isFishExistInCapturedList = function (capturedFishPositions, position) {
return capturedFishPositions.some((eachFishPosition) => {
return (
eachFishPosition[0] === position[0] && eachFishPosition[1] === position[1]
);
});
};
const isFishCaptured = function (currentPosition, fishPosition) {
return (
fishPosition[0] === currentPosition[0] &&
fishPosition[1] === currentPosition[1]
);
};
const checkAMoveIsInvalid = function (position) {
const invalidMoves = [
(position) => position[0] > gridRowsSize - 1 || position[0] <= 0,
(position) => position[1] > gridColsSize - 1 || position[1] <= 0,
(position) => doesPositionHasGivenItem(position, "bear"),
(position) => doesPositionHasGivenItem(position, "shark"),
(position) => doesPositionHasGivenItem(position, "wall")
];
return invalidMoves.some((eachInvalidMoveFunc) => {
// printLog(eachInvalidMoveFunc(position), position);
return eachInvalidMoveFunc(position);
});
};
const checkAllCellsVisitedAleastOnce = function (positionAndFrequencyKey) {
return Object.keys(positionAndFrequencyKey).length === totalValidCells;
};
const doesAllFishesCapured = function (capturedFishes) {
return capturedFishes.length === fishPositions.length;
};
const getNewMove = function (currentMove, direction) {
// printLog(direction, directions[direction]);
return [
currentMove[0] + directions[direction][0],
currentMove[1] + directions[direction][1]
];
};
const getValidPositions = function (currentPosition, direction) {
const validMoves = [];
for (
directionIndex = 0;
directionIndex < directions.length;
directionIndex++
) {
const eachDirection = directions[directionIndex];
if (eachDirection === undefined || direction === directionIndex) continue;
const newPosition = getNewMove(currentPosition, directionIndex);
// printLog(
// checkAMoveIsInvalid(newPosition, capturedFishes),
// (path.length === 0 ? [0] : path).map((x) => directionNames[x]),
// `StartPosition:${startPosition}`,
// `newPosition:${newPosition}`,
// `freq:${positionAndFrequency[positionAndFrequencyKey]}`
// );
if (checkAMoveIsInvalid(newPosition)) continue;
validMoves.push({ position: newPosition, direction: directionIndex });
}
return validMoves;
};
const sortValidPositionsByVisitingFreq = function (
validMoves,
visitedPositionsFreq
) {
// Always take the unexplored moves first
const positionAndFrequencyKey = (position) =>
`R${position[0]}_C${position[1]}`;
// .filter((x) => {
// return (
// !visitedPositionsFreq[positionAndFrequencyKey(x.position)] ||
// visitedPositionsFreq[positionAndFrequencyKey(x.position)].visited_freq >
// 1
// );
// })
return validMoves.sort((a, b) => {
const positionA = a.position;
const positionB = b.position;
if (!visitedPositionsFreq[positionAndFrequencyKey(positionA)]) {
return -1;
}
if (!visitedPositionsFreq[positionAndFrequencyKey(positionB)]) {
return 1;
}
return (
visitedPositionsFreq[positionAndFrequencyKey(positionA)].visited_freq -
visitedPositionsFreq[positionAndFrequencyKey(positionB)].visited_freq
);
});
};
const moveAroundTheGrid = function (
startPosition,
path,
capturedFishes,
positionAndFrequency
) {
const logInvalidMessage = (message) => {
printLog(
message,
startPosition,
(path.length === 0 ? [0] : path).map((dir) => directionNames[dir]),
capturedFishes.length === 0
? "NO_FISHES_CAPTURED"
: "Fishes Captured: " + capturedFishes.length
);
};
const invalidMessage = [
[checkAMoveIsInvalid(startPosition), "invalid move"],
[doesAllFishesCapured(capturedFishes), "Captured all fishes"],
[
checkAllCellsVisitedAleastOnce(positionAndFrequency),
"visited every cell in grid aleast once"
]
].find((condition) => {
return condition[0];
});
printLog(invalidMessage);
if (invalidMessage) {
logInvalidMessage(invalidMessage[1]);
return invalidMessage[1];
}
// counting the # of captured fishes
if (
doesPositionHasGivenItem(startPosition, "fish") &&
!isFishExistInCapturedList(capturedFishes, startPosition)
) {
printLog(
"captured the fish",
(path.length === 0 ? [0] : path).map((dir) => directionNames[dir]),
startPosition
);
capturedFishes.push(startPosition);
}
const direction = path[path.length - 1];
//snow field
if (path.length === 0 || doesPositionHasGivenItem(startPosition, "snow")) {
let eachMove = 0;
const validPositions = sortValidPositionsByVisitingFreq(
getValidPositions(
startPosition,
antiDirections[directionNames[direction]]
),
positionAndFrequency
);
printLog(validPositions);
for (
eachPositionIndex = 0;
eachPositionIndex < validPositions.length;
eachPositionIndex++
) {
const newPosition = validPositions[eachPositionIndex].position;
const newDirection = validPositions[eachPositionIndex].direction;
if (
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`] ===
undefined
) {
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`] =
getNewCellState();
}
printLog(
`selected direction: ${
directionNames[newDirection]
} to ${startPosition} ${
path.length === 0
? `init ${validPositions.map((x) => x.position)}`
: "entered snow"
}`
);
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`][
directionNames[direction]
] = moveAroundTheGrid(
newPosition,
[...path, newDirection],
[...capturedFishes],
{ ...positionAndFrequency }
);
// printLog(
// Object.values(positionAndFrequency || {}).map((eachValue) =>
// Object.values(eachValue)
// )
// );
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`]
.visited_freq++;
}
printLog(
"moves over",
startPosition,
(path.length === 0 ? [0] : path).map((x) => directionNames[x]),
capturedFishes.length === 0
? "NO_FISHES_CAPTURED"
: "Fishes Captured: " + capturedFishes.length
);
return "END";
}
if ([" ", "*"].includes(grid[startPosition[0]][startPosition[1]])) {
// if i am stopping in next move, can i move in another direction
const newMove = getNewMove(startPosition, direction);
if (doesPositionHasGivenItem(newMove, "wall")) {
let eachMove = 0;
const validPositions = sortValidPositionsByVisitingFreq(
getValidPositions(
startPosition,
antiDirections[directionNames[direction]]
),
positionAndFrequency
);
// printLog(validPositions);
for (
eachPositionIndex = 0;
eachPositionIndex < validPositions.length;
eachPositionIndex++
) {
const newPosition = validPositions[eachPositionIndex].position;
const newDirection = validPositions[eachPositionIndex].direction;
if (
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`] ===
undefined
) {
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`] =
getNewCellState();
}
printLog(
`selected direction: ${directionNames[newDirection]} to ${startPosition} blocked by wall`
);
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`][
directionNames[direction]
] = moveAroundTheGrid(
newPosition,
[...path, newDirection],
[...capturedFishes],
positionAndFrequency
);
// printLog(
// Object.values(positionAndFrequency || {}).map((eachValue) =>
// Object.values(eachValue)
// )
// );
positionAndFrequency[`R${newPosition[0]}_C${newPosition[1]}`]
.visited_freq++;
}
printLog(
"moves over",
startPosition,
(path.length === 0 ? [0] : path).map((x) => directionNames[x]),
capturedFishes.length === 0
? "NO_FISHES_CAPTURED"
: "Fishes Captured: " + capturedFishes.length
);
return "END";
} else {
if (positionAndFrequency[`R${newMove[0]}_C${newMove[1]}`] === undefined) {
positionAndFrequency[`R${newMove[0]}_C${newMove[1]}`] =
getNewCellState();
}
printLog(`Moving Further ${directionNames[path[path.length - 1]]}...`);
positionAndFrequency[`R${newMove[0]}_C${newMove[1]}`][direction] =
moveAroundTheGrid(
newMove,
[...path], // no need to insert direction as it is continuing in the previous direction
[...capturedFishes],
positionAndFrequency
);
printLog(
Object.values(positionAndFrequency || {}).map((eachValue) =>
Object.values(eachValue)
)
);
positionAndFrequency[`R${newMove[0]}_C${newMove[1]}`].visited_freq++;
return "END";
}
}
};
const checkIsItPossibleToMoveFurtherInSameDirection = function (
currentPenguLocation,
direction
) {
if (
[" ", "*"].includes(grid[currentPenguLocation[0]][currentPenguLocation[1]])
) {
const newMove = getNewMove(currentPenguLocation, direction);
if (doesPositionHasGivenItem(newMove, "wall")) {
return true;
}
}
return false;
};
const findRouteFrom = function (
currentPenguLocation,
targetFishPosition,
visitedPositions,
path
) {
const currentMovingDirectionIndex = path[path.length - 1];
const conditionsToCallGetValidMoves = [
() => path.length === 0,
(position) => doesPositionHasGivenItem(position, "snow"),
(position) =>
checkIsItPossibleToMoveFurtherInSameDirection(
position,
currentMovingDirectionIndex
)
];
const visitedPositionKeyFunc = (position) =>
`R${position[0]}_C${position[1]}`;
if (isFishCaptured(currentPenguLocation, targetFishPosition)) {
return {
capturedFish: true,
path
};
}
if (visitedPositions[visitedPositionKeyFunc(currentPenguLocation)] === 1)
return { capturedFish: false };
visitedPositions[visitedPositionKeyFunc(currentPenguLocation)] = 1;
if (conditionsToCallGetValidMoves.some((x) => x(currentPenguLocation))) {
const validMoves = getValidPositions(currentPenguLocation);
for (
let eachValidMoveId = 0;
eachValidMoveId < validMoves.length;
eachValidMoveId++
) {
let eachMove = validMoves[eachValidMoveId].position;
let eachDirection = validMoves[eachValidMoveId].direction;
if (isFishCaptured(eachMove, targetFishPosition)) {
// console.log(eachMove, targetFishPosition, [...path, eachDirection]);
return {
capturedFish: true,
path: [...path, eachDirection]
};
}
if (!visitedPositions[visitedPositionKeyFunc(eachMove)]) {
let routeStatus = findRouteFrom(
eachMove,
targetFishPosition,
visitedPositions,
[...path, eachDirection]
);
// console.log(eachMove, targetFishPosition);
if (routeStatus.capturedFish) {
return routeStatus;
}
}
}
return {
capturedFish: false
};
}
const nextFurtherMove = getNewMove(
currentPenguLocation,
currentMovingDirectionIndex
);
if (!checkAMoveIsInvalid(nextFurtherMove)) {
const routeStatus = findRouteFrom(
nextFurtherMove,
targetFishPosition,
visitedPositions,
path
);
return routeStatus;
}
// printLog("invalid move");
return {
capturedFish: false
};
};
const moveAroundToCollectFishes = function () {
let currentPenguLocation = penguPosition;
for (
let eachFishIndex = 0;
eachFishIndex < fishPositions.length;
eachFishIndex++
) {
const targetFishPosition = fishPositions[eachFishIndex];
const routeStatus = findRouteFrom(
currentPenguLocation,
targetFishPosition,
{},
[]
);
printLog(
routeStatus.capturedFish,
routeStatus.capturedFish
? routeStatus.path.map((x) => directionNames[x])
: "cannot capture the fish"
);
currentPenguLocation = targetFishPosition;
}
};
// #endregion function
// #region main function
(async function () {
try {
const data = await fs.readFile(inputFileName, "utf8");
const textFileLines = data.split("\n").map((eachLine) => eachLine.trim());
// assign the grid dimensions
[gridRowsSize, gridColsSize] = textFileLines[0]
.split(" ")
.map((gridDimension) => +gridDimension);
const gridStrings = textFileLines.slice(1);
grid = gridStrings.map((eachStr) => eachStr.split(""));
// create the grid
extractGridPositions(gridStrings);
printLog(
"main",
`gridRowsSize:${gridRowsSize}`,
`gridColsSize:${gridColsSize}`
);
printLog(
Object.keys(symbolToName)
.map(
(eachSymbol) =>
`${symbolToName[eachSymbol]}:${symbolToPositionsArray[
symbolToName[eachSymbol]
].map((eachPosition) => `[${eachPosition[0]},${eachPosition[1]}]`)}`
)
.join("\n")
);
countTotalValidCells();
grid[penguPosition[0]][penguPosition[1]] = " ";
// moveAroundTheGrid(penguPosition, [], [], {
// [`R${penguPosition[0]}_C${penguPosition[1]}`]: getNewCellState()
// });
moveAroundToCollectFishes();
// printLog(
// sortValidPositionsByVisitingFreq(getValidPositions([3, 2]), {
// [`R2_C3`]: { visited_freq: 3 },
// [`R2_C1`]: { visited_freq: 3 }
// }).map((x) => x.position)
// );
// printLog(totalValidCells);
} catch (err) {
console.log("something went wrong", err);
}
})();
// #endregion main function