-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path1696. Jump Game VI
68 lines (46 loc) · 1.48 KB
/
1696. Jump Game VI
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
TC: O(NLogK)
SC: O(K)
class Solution {
public int maxResult(int[] nums, int k) {
/**
For every index starting from 1: --- n
Find out the max sum from all { i -1 } to { i –k } index -- klogk
sum[index] = value[index] + maxfound
Result is sum[length -1]
*/
int n = nums.length;
int max = nums[0];
// index --- maxSum
PriorityQueue<int[]> pq = new PriorityQueue<>((a,b) -> b[1]-a[1]);
pq.offer(new int[]{0,nums[0]});
for(int i=1;i<n;i++){
while(i-pq.peek()[0]>k){
pq.poll();
}
int[] top = pq.peek();
max = nums[i] + top[1];
pq.offer(new int[]{i,max});
}
return max;
}
}
TC: O(N)
SC: O(K)
class Solution {
public int maxResult(int[] nums, int k) {
int n = nums.length;
Deque<Integer> dq = new ArrayDeque<>();
dq.offerLast(0);
for(int i=1;i<n;i++){
nums[i] = nums[i] + nums[dq.peekFirst()];
while(!dq.isEmpty() && nums[i]>=nums[dq.peekLast()]){
dq.pollLast();
}
dq.offerLast(i);
if(i - dq.peekFirst() >=k){
dq.pollFirst();
}
}
return nums[n-1];
}
}