forked from dnp1204/daily-code-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
problem-286.js
262 lines (214 loc) · 5.54 KB
/
problem-286.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
/**
* Company: VMware.
*
* The skyline of a city is composed of several buildings of various widths and heights, possibly
* overlapping one another when viewed from a distance. We can represent the buildings using an
* array of (left, right, height) tuples, which tell us where on an imaginary x-axis a building
* begins and ends, and how tall it is. The skyline itself can be described by a list of (x, height)
* tuples, giving the locations at which the height visible to a distant observer changes, and each
* new height.
*
* Given an array of buildings as described above, create a function that returns the skyline.
*
* Leetcode: https://leetcode.com/problems/the-skyline-problem/
*/
var getSkyline = function(buildings) {
const buildingPoints = [];
const ans = [];
for (const building of buildings) {
const [start, end, height] = building;
buildingPoints.push([start, height, true]);
buildingPoints.push([end, height, false]);
}
buildingPoints.sort((a, b) => {
if (a[0] === b[0]) {
const heightA = a[2] ? -a[1] : a[1];
const heightB = b[2] ? -b[1] : b[1];
return heightA - heightB;
}
return a[0] - b[0];
});
const map = new TreeMap();
map.set(0, 1);
let previousMax = 0;
for (const point of buildingPoints) {
if (point[2]) {
if (map.get(point[1])) {
map.set(point[1], map.get(point[1]) + 1);
} else {
map.set(point[1], 1);
}
} else {
if (map.get(point[1]) > 1) {
map.set(point[1], map.get(point[1]) - 1);
} else {
map.remove(point[1]);
}
}
const currentMax = map.getMaxKey();
if (previousMax !== currentMax) {
ans.push([point[0], currentMax]);
previousMax = currentMax;
}
}
return ans;
};
function TreeMap() {
var root = null;
var keyType = void 0;
var length = 0;
return {
each: each,
set: set,
get: get,
getTree: getTree,
getLength: getLength,
getMaxKey: getMaxKey,
getMinKey: getMinKey,
remove: remove
};
function checkKey(key, checkKeyType) {
var localKeyType = typeof key;
if (
localKeyType !== 'number' &&
localKeyType !== 'string' &&
localKeyType !== 'boolean'
) {
throw new Error("'key' must be a number, a string or a boolean");
}
if (checkKeyType === true && localKeyType !== keyType) {
throw new Error('All keys must be of the same type');
}
return localKeyType;
}
function call(callback) {
var args = Array.prototype.slice.call(arguments, 1);
if (typeof callback === 'function') {
callback.apply(void 0, args);
}
}
function getTree() {
return root;
}
function getLength() {
return length;
}
function each(callback) {
internalEach(root, callback);
}
function internalEach(node, callback, internalCallback) {
if (node === null) {
return call(internalCallback);
}
internalEach(node.left, callback, function() {
call(callback, node.value, node.key);
internalEach(node.right, callback, function() {
call(internalCallback);
});
});
}
function get(key) {
checkKey(key);
return internalGet(key, root);
}
function internalGet(key, node) {
if (node === null) {
return void 0;
}
if (key < node.key) {
return internalGet(key, node.left);
} else if (key > node.key) {
return internalGet(key, node.right);
} else {
return node.value;
}
}
function set(key, value) {
if (root === null) {
keyType = checkKey(key);
} else {
checkKey(key, true);
}
root = internalSet(key, value, root);
}
function internalSet(key, value, node) {
if (node === null) {
length++;
return {
key: key,
value: value,
left: null,
right: null
};
}
if (key < node.key) {
node.left = internalSet(key, value, node.left);
} else if (key > node.key) {
node.right = internalSet(key, value, node.right);
} else {
node.value = value;
}
return node;
}
function getMaxKey() {
var maxNode = getMaxNode(root);
if (maxNode !== null) {
return maxNode.key;
}
return maxNode;
}
function getMinKey() {
var minNode = getMinNode(root);
if (minNode !== null) {
return minNode.key;
}
return minNode;
}
function getMaxNode(node) {
while (node !== null && node.right !== null) {
node = node.right;
}
return node;
}
function getMinNode(node) {
while (node !== null && node.left !== null) {
node = node.left;
}
return node;
}
function remove(key) {
checkKey(key);
root = internalRemove(key, root);
}
function internalRemove(key, node) {
if (node === null) {
return null;
}
if (key < node.key) {
node.left = internalRemove(key, node.left);
} else if (key > node.key) {
node.right = internalRemove(key, node.right);
} else {
if (node.left !== null && node.right !== null) {
var maxNode = getMaxNode(node.left);
var maxNodeKey = maxNode.key;
var maxNodeValue = maxNode.value;
maxNode.key = node.key;
maxNode.value = node.value;
node.key = maxNodeKey;
node.value = maxNodeValue;
node.left = internalRemove(key, node.left);
} else if (node.left !== null) {
length--;
return node.left;
} else if (node.right !== null) {
length--;
return node.right;
} else {
length--;
return null;
}
}
return node;
}
}