Skip to content

Commit 2fde101

Browse files
committed
update
1 parent a16edb9 commit 2fde101

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

218_getSkyline.java

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
}

393_validUtf8.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ public boolean validUtf8(int[] data) {
33
//All & or | needs this ()!!!
44
if(data == null || data.length == 0) return false;
55
int numOfBytes = 0;
6-
for(int i = 0; i < data.length; i++){
6+
int i = 0;
7+
while(i < data.length){
78
if(data[i] > 255) return false; //256: 100000000(one 1 and eight 0)
89
else if((data[i] & 128) == 0) numOfBytes = 1; //128: 10000000 (one 1 and seven 0)
910
else if((data[i] & 224) == 192) numOfBytes = 2; //224: 11100000, 192: 11000000
@@ -16,7 +17,7 @@ public boolean validUtf8(int[] data) {
1617
if(i + j >= data.length) return false;
1718
if((data[i+j] & 192) != 128) return false; //check whether it is 10XXXXXXX
1819
}
19-
i = i+numOfBytes-1; //dont forget move i.
20+
i = i+numOfBytes; //dont forget move i.
2021
}
2122
return true;
2223

0 commit comments

Comments
 (0)