File tree 2 files changed +37
-2
lines changed
2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ public class Solution {
2
+ public List <int []> getSkyline (int [][] buildings ) {
3
+ List <int []> result = new ArrayList <int []>();
4
+ List <int []> height = new ArrayList <int []>();
5
+
6
+ for (int [] b : buildings ){
7
+ height .add (new int []{b [0 ], -b [2 ]});
8
+ height .add (new int []{b [1 ], b [2 ]});
9
+ }
10
+
11
+ Comparator <int []> comparator = new Comparator <int []>(){
12
+ public int compare (int [] a , int [] b ){
13
+ if (a [0 ]!=b [0 ]) return a [0 ]-b [0 ];
14
+ else return a [1 ]-b [1 ];
15
+ }
16
+ };
17
+
18
+ Collections .sort (height , comparator );
19
+
20
+ PriorityQueue <Integer > pq = new PriorityQueue <Integer >(Collections .reverseOrder ());
21
+ pq .offer (0 );
22
+ int prev = 0 ;
23
+ for (int [] h : height ){
24
+ if (h [1 ] < 0 ) pq .add (-h [1 ]);
25
+ else pq .remove (h [1 ]);
26
+ int cur = pq .peek ();
27
+ if (prev != cur ){
28
+ result .add (new int []{h [0 ],cur });
29
+ prev = cur ;
30
+ }
31
+ }
32
+ return result ;
33
+ }
34
+ }
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ public boolean validUtf8(int[] data) {
3
3
//All & or | needs this ()!!!
4
4
if (data == null || data .length == 0 ) return false ;
5
5
int numOfBytes = 0 ;
6
- for (int i = 0 ; i < data .length ; i ++){
6
+ int i = 0 ;
7
+ while (i < data .length ){
7
8
if (data [i ] > 255 ) return false ; //256: 100000000(one 1 and eight 0)
8
9
else if ((data [i ] & 128 ) == 0 ) numOfBytes = 1 ; //128: 10000000 (one 1 and seven 0)
9
10
else if ((data [i ] & 224 ) == 192 ) numOfBytes = 2 ; //224: 11100000, 192: 11000000
@@ -16,7 +17,7 @@ public boolean validUtf8(int[] data) {
16
17
if (i + j >= data .length ) return false ;
17
18
if ((data [i +j ] & 192 ) != 128 ) return false ; //check whether it is 10XXXXXXX
18
19
}
19
- i = i +numOfBytes - 1 ; //dont forget move i.
20
+ i = i +numOfBytes ; //dont forget move i.
20
21
}
21
22
return true ;
22
23
You can’t perform that action at this time.
0 commit comments