File tree 1 file changed +7
-10
lines changed
src/main/kotlin/g0201_0300/s0218_the_skyline_problem
1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
package g0201_0300.s0218_the_skyline_problem
2
2
3
3
// #Hard #Array #Heap_Priority_Queue #Ordered_Set #Divide_and_Conquer #Segment_Tree
4
- // #Binary_Indexed_Tree #Line_Sweep #2022_10_25_Time_365_ms_(93.14%)_Space_45.7_MB_(93.71 %)
4
+ // #Binary_Indexed_Tree #Line_Sweep #2025_03_29_Time_50_ms_(100.00%)_Space_63.12_MB_(10.53 %)
5
5
6
6
import java.util.TreeMap
7
7
@@ -12,21 +12,18 @@ class Solution {
12
12
return ans
13
13
}
14
14
val totalBuildings = blds.size
15
- val buildings = Array < Building ?> (totalBuildings * 2 ) { null }
16
- var idx = 0
17
- for (building in blds) {
18
- buildings[idx] = Building (building[ 0 ], building[ 2 ], true )
19
- buildings[idx + 1 ] = Building (building[ 1 ], building [2 ], false )
20
- idx + = 2
15
+ val buildings = Array (totalBuildings * 2 ) { i ->
16
+ if (i % 2 == 0 ) {
17
+ Building (blds[i / 2 ][ 0 ], blds[i / 2 ][ 2 ], true )
18
+ } else {
19
+ Building (blds[i / 2 ][ 1 ], blds[i / 2 ] [2 ], false )
20
+ }
21
21
}
22
22
buildings.sort()
23
23
val skyline = TreeMap <Int , Int >()
24
24
skyline[0 ] = 1
25
25
var prevMaxHeight = 0
26
26
for (building in buildings) {
27
- if (building == null ) {
28
- continue
29
- }
30
27
val height = building.height
31
28
if (building.isStart) {
32
29
skyline[height] = 1 + (skyline[height] ? : 0 )
You can’t perform that action at this time.
0 commit comments