-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday22.js
86 lines (80 loc) · 2.28 KB
/
day22.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
const { readData } = require("./readfile");
const reducer = require("./reducer");
const input = readData("day22Input.txt");
// const input = readData("day22InputSimple.txt");
// const input = readData("day22InputInfinite.txt");
const lines = input.split(/\n\n/);
const _ = require("lodash");
const parsePlayer = (input) => {
return input
.split(/\n/)
.slice(1)
.map((x) => parseInt(x))
.reverse();
};
const player1 = parsePlayer(lines[0]);
const player2 = parsePlayer(lines[1]);
const getWinnerScore = (player1, player2) => {
const score = [player1, player2]
.filter((x) => x.length !== 0)[0]
.map((x, i) => x * (i + 1))
.reduce(reducer.addReducer, 0);
console.log(score);
return score;
};
const playGame1 = (player1, player2) => {
while (player1.length !== 0 && player2.length !== 0) {
const card1 = player1.pop();
const card2 = player2.pop();
if (card1 > card2) {
player1.unshift(card1);
player1.unshift(card2);
} else {
player2.unshift(card2);
player2.unshift(card1);
}
}
console.log(player1, player2);
getWinnerScore(player1, player2);
};
// playGame1(player1, player2);
const playGame2 = (player1, player2, rootLevel) => {
// console.log("##########");
const played = [];
while (player1.length !== 0 && player2.length !== 0) {
// console.log("------------");
// console.log(player1);
// console.log(player2);
if (played.includes([player1.join(","), player2.join(",")].join("-"))) {
if (rootLevel) {
getWinnerScore(player1, player2);
}
return true;
}
played.push([player1.join(","), player2.join(",")].join("-"));
const card1 = player1.pop();
const card2 = player2.pop();
let isPlayer1Win;
if (card1 <= player1.length && card2 <= player2.length) {
isPlayer1Win = playGame2(
[...player1.slice(player1.length - card1)],
[...player2.slice(player2.length - card2)],
false
);
} else {
isPlayer1Win = card1 > card2;
}
if (isPlayer1Win) {
player1.unshift(card1);
player1.unshift(card2);
} else {
player2.unshift(card2);
player2.unshift(card1);
}
}
if (rootLevel) {
getWinnerScore(player1, player2);
}
return player1.length !== 0;
};
playGame2(player1, player2, true);