-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfive.js
More file actions
186 lines (161 loc) · 3.4 KB
/
Copy pathfive.js
File metadata and controls
186 lines (161 loc) · 3.4 KB
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
import { readFile } from 'fs/promises';
// 5a
// async function init() {
// const BOARD = [];
// const LINES = [];
// const input = await readFile('five.txt', 'utf8');
// const rows = input.split('\n');
// let max = 0;
// rows.forEach((row) => {
// const [left, right] = row.split(' -> ');
// let [x1, y1] = left.split(',').map((d) => parseInt(d));
// let [x2, y2] = right.split(',').map((d) => parseInt(d));
// if (x1 > max) {
// max = x1;
// }
// if (x2 > max) {
// max = x2;
// }
// if (y1 > max) {
// max = y1;
// }
// if (y2 > max) {
// max = y2;
// }
// LINES.push({
// x1,
// y1,
// x2,
// y2,
// });
// });
// for (let i = 0; i < max + 1; i++) {
// BOARD.push([]);
// for (let j = 0; j < max + 1; j++) {
// BOARD[i][j] = 0;
// }
// }
// LINES.forEach(({ x1, y1, x2, y2 }) => {
// const isH = y1 === y2;
// const isV = x1 === x2;
// if (isH) {
// if (x1 > x2) {
// let swap = x1;
// x1 = x2;
// x2 = swap;
// }
// for (let xx = x1; xx <= x2; xx++) {
// BOARD[xx][y1] += 1;
// }
// }
// if (isV) {
// if (y1 > y2) {
// let swap = y1;
// y1 = y2;
// y2 = swap;
// }
// for (let yy = y1; yy <= y2; yy++) {
// BOARD[x1][yy] += 1;
// }
// }
// });
// let counter = 0;
// BOARD.forEach((row) => {
// row.forEach((cell) => {
// if (cell > 1) {
// counter++;
// }
// });
// });
// // console.log(BOARD.join('\n'));
// console.log(counter);
// }
// 5b
async function init() {
console.time('b');
const BOARD = [];
const LINES = [];
const input = await readFile('five.txt', 'utf8');
const rows = input.split('\n');
let max = 0;
rows.forEach((row) => {
const [left, right] = row.split(' -> ');
let [x1, y1] = left.split(',').map((d) => parseInt(d));
let [x2, y2] = right.split(',').map((d) => parseInt(d));
if (x1 > max) {
max = x1;
}
if (x2 > max) {
max = x2;
}
if (y1 > max) {
max = y1;
}
if (y2 > max) {
max = y2;
}
LINES.push({
x1,
y1,
x2,
y2,
});
});
for (let i = 0; i < max + 1; i++) {
BOARD.push([]);
for (let j = 0; j < max + 1; j++) {
BOARD[i][j] = 0;
}
}
LINES.forEach(({ x1, y1, x2, y2 }) => {
const isH = y1 === y2;
const isV = x1 === x2;
if (isH) {
if (x1 > x2) {
let swap = x1;
x1 = x2;
x2 = swap;
}
for (let xx = x1; xx <= x2; xx++) {
BOARD[xx][y1] += 1;
}
} else if (isV) {
if (y1 > y2) {
let swap = y1;
y1 = y2;
y2 = swap;
}
for (let yy = y1; yy <= y2; yy++) {
BOARD[x1][yy] += 1;
}
} else {
// diagonal
if (x1 > x2) {
let swapX = x1;
let swapY = y1;
x1 = x2;
y1 = y2;
x2 = swapX;
y2 = swapY;
}
const dY = y1 < y2 ? 1 : -1;
let yy = y1;
for (let xx = x1; xx <= x2; xx++) {
BOARD[xx][yy] += 1;
yy += dY;
}
}
});
let counter = 0;
BOARD.forEach((row) => {
row.forEach((cell) => {
if (cell > 1) {
counter++;
}
});
});
// console.log(BOARD.join('\n'));
console.log(counter);
console.timeEnd('b');
}
init();