-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.ts
29 lines (29 loc) · 983 Bytes
/
Solution.ts
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
function averageHeightOfBuildings(buildings: number[][]): number[][] {
const cnt = new Map<number, number>();
const d = new Map<number, number>();
for (const [start, end, height] of buildings) {
cnt.set(start, (cnt.get(start) || 0) + 1);
cnt.set(end, (cnt.get(end) || 0) - 1);
d.set(start, (d.get(start) || 0) + height);
d.set(end, (d.get(end) || 0) - height);
}
let [s, m] = [0, 0];
let last = -1;
const ans: number[][] = [];
const sortedKeys = Array.from(d.keys()).sort((a, b) => a - b);
for (const k of sortedKeys) {
const v = d.get(k)!;
if (m > 0) {
const avg = Math.floor(s / m);
if (ans.length > 0 && ans.at(-1)![2] === avg && ans.at(-1)![1] === last) {
ans[ans.length - 1][1] = k;
} else {
ans.push([last, k, avg]);
}
}
s += v;
m += cnt.get(k)!;
last = k;
}
return ans;
}