-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday7.js
97 lines (85 loc) · 2.89 KB
/
day7.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
const { readData } = require('./readfile');
const input = readData('day7Input.txt');
// const input = readData('day7Input-simple.txt');
// const input = readData('day7Input-q2.txt');
const lines = input.split(/\n/);
const line = `muted gold bags contain 1 wavy red bag, 3 mirrored violet bags, 5 bright gold bags, 5 plaid white bags. `;
const parseLine = line => {
const [parentBag, children] = line.split(' bags contain ');
// console.log(parentBag);
let childrenBags = [];
if (children && !children.includes('no other bags')) {
childrenBags = children ? children.trimEnd()
.split(/,|\./)
.map(child => child.replace(/bags?/, ''))
.map(child => child.trim())
.filter(Boolean)
.map(child => [child.slice(2), child.slice(0, 1)]) : [];
}
// console.log(childrenBags);
return [parentBag, childrenBags];
}
// const parsedLine = parseLine(line);
// console.log(parsedLine)
const parsedLines = lines.map(parseLine);
// console.log(JSON.stringify(parsedLines));
// const colors = parsedLines.map(line => line[0]);
const isNotEmpty = list => list && list.length > 0;
const bagMap = {};
parsedLines.forEach(line => {
const [parentBag, childrenBags] = line;
bagMap[parentBag] = childrenBags;
})
const colors = Object.keys(bagMap)
// console.log(colors)
// console.log(bagMap)
const countBagsContainTargetBag = toFindBag => {
let count = 0;
for (let i = 0; i < colors.length; i++) {
// console.log('')
const line = parsedLines[i];
let [, childrenBags] = line;
let found = false;
while (isNotEmpty(childrenBags)) {
let bags = [];
// console.log('childrenBags', childrenBags)
for (let i = 0; i < childrenBags.length; i++) {
const [bagName] = childrenBags[i];
// console.log('bagName', bagName, bagName === toFindBag)
if (bagName === toFindBag) {
found = true;
break;
}
if (isNotEmpty(bagMap[bagName])) {
bags = [...bags, ...bagMap[bagName]];
}
}
if (found) {
break;
}
childrenBags = bags;
}
if (found) {
count++;
}
}
return count;
}
// question 1
const toFindBag = 'shiny gold';
// const count = countBagsContainTargetBag(toFindBag);
// console.log(count);
// 103
// question 2
let count = 1;
const getBagsCount = (bagName, count) => {
let childrenBagsWithCount = bagMap[bagName];
// console.log(bagName, count, childrenBagsWithCount);
return childrenBagsWithCount.map(line => {
let [child, childCount] = line;
return getBagsCount(child, count * childCount);
}).reduce((acc, cur) => acc + cur, count);
}
const total = getBagsCount(toFindBag, count);
console.log(total-1);
// 1469