forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1046-Last-Stone-Weight.ts
78 lines (66 loc) · 2.04 KB
/
1046-Last-Stone-Weight.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
class MaxHeap {
heap: number[];
constructor(array: number[]) {
this.heap = this.buildHeap(array);
}
buildHeap(array: number[]) {
let parentIdx = Math.floor((array.length - 2) / 2);
for (let i = parentIdx; i >= 0; i--) {
this.siftDown(i, array.length - 1, array);
}
return array;
}
siftDown(idx: number, endIdx: number, heap: number[]) {
let childOneIdx = 2 * idx + 1;
while (childOneIdx <= endIdx) {
let childTwoIdx = 2 * idx + 2 <= endIdx ? 2 * idx + 2 : -1;
let swapIdx;
if (childTwoIdx !== -1 && heap[childOneIdx] < heap[childTwoIdx]) {
swapIdx = childTwoIdx;
} else swapIdx = childOneIdx;
if (heap[swapIdx] > heap[idx]) {
this.swap(swapIdx, idx, heap);
idx = swapIdx;
childOneIdx = 2 * idx + 1;
} else return;
}
}
siftUp(idx: number, heap: number[]) {
let parentIdx = Math.floor((idx - 1) / 2);
while (heap[parentIdx] < heap[idx] && idx > 0) {
this.swap(parentIdx, idx, heap);
idx = parentIdx;
parentIdx = Math.floor((idx - 1) / 2);
}
}
peek() {
return this.heap[0];
}
remove() {
this.swap(this.heap.length - 1, 0, this.heap);
const removeValue = this.heap.pop();
this.siftDown(0, this.heap.length - 1, this.heap);
return removeValue;
}
size() {
return this.heap.length;
}
insert(value: number) {
this.heap.push(value);
this.siftUp(this.heap.length - 1, this.heap);
}
swap(i: number, j: number, arr: number[]) {
let ele = arr[i];
arr[i] = arr[j];
arr[j] = ele;
}
}
function lastStoneWeight(stones: number[]): number {
const heap = new MaxHeap(stones);
while (heap.size() > 1) {
const stone1 = heap.remove();
const stone2 = heap.remove();
heap.insert(stone1 - stone2);
}
return heap.peek();
}