-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
/
Copy pathSolution2.ts
51 lines (46 loc) · 1.08 KB
/
Solution2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class BinaryIndexedTree {
private n: number;
private c: number[];
constructor(n: number) {
this.n = n;
this.c = new Array(n + 1).fill(0);
}
update(x: number, v: number) {
while (x <= this.n) {
this.c[x] = Math.max(this.c[x], v);
x += x & -x;
}
}
query(x: number): number {
let mx = 0;
while (x) {
mx = Math.max(mx, this.c[x]);
x -= x & -x;
}
return mx;
}
}
function lengthOfLIS(nums: number[]): number {
const s = [...new Set(nums)].sort((a, b) => a - b);
const m = s.length;
const tree = new BinaryIndexedTree(m);
for (let x of nums) {
x = search(s, x);
const t = tree.query(x - 1) + 1;
tree.update(x, t);
}
return tree.query(m);
}
function search(nums: number[], x: number): number {
let l = 0,
r = nums.length - 1;
while (l < r) {
const mid = (l + r) >> 1;
if (nums[mid] >= x) {
r = mid;
} else {
l = mid + 1;
}
}
return l + 1;
}