You are given a 0-indexed integer array nums representing the contents of a pile , where nums[0] is the topmost element of the pile.
In one move, you can perform either of the following:
If the pile is not empty, remove the topmost element of the pile.
If there are one or more removed elements, add any one of them back onto the pile. This element becomes the new topmost element.
You are also given an integer k, which denotes the total number of moves to be made.
Return themaximum value of the topmost element of the pile possible after
exactlykmoves. In case it is not possible to obtain a non-empty pile after k moves, return -1.
Input: nums =[5,2,2,4,0,6], k =4Output: 5Explanation:
One of the ways we can end with5 at the top of the pile after 4 moves is as follows:- Step 1: Remove the topmost element =5. The pile becomes [2,2,4,0,6].- Step 2: Remove the topmost element =2. The pile becomes [2,4,0,6].- Step 3: Remove the topmost element =2. The pile becomes [4,0,6].- Step 4: Add 5 back onto the pile. The pile becomes [5,4,0,6].Note that thisis not the only way to end with5 at the top of the pile. It can be shown that 5is the largest answer possible after 4 moves.
Input: nums =[2], k =1Output: -1Explanation:
In the first move, our only option is to pop the topmost element of the pile.Since it is not possible to obtain a non-empty pile after one move, we return-1.
To maximize the topmost element after exactly k moves, we can remove up to k elements and add back any previously removed element. The answer depends on the value of k relative to the array length. We must consider all possible cases to maximize the topmost element.
classSolution {
public:int maximumTop(vector<int>& nums, int k) {
int n = nums.size();
if (n ==0) return-1;
if (k ==0) return n >0? nums[0] :-1;
if (k ==1) return n >=2? nums[1] :-1;
if (n ==1&& k %2==1) return-1;
int ans =0;
for (int i =0; i < min(n, k-1); ++i) ans = max(ans, nums[i]);
if (k < n) ans = max(ans, nums[k]);
return ans;
}
};
1
2
3
4
5
6
7
8
9
10
11
12
13
funcmaximumTop(nums []int, kint) int {
n:= len(nums)
ifn==0 { return-1 }
ifk==0 { returnnums[0] }
ifk==1 { ifn>=2 { returnnums[1] } else { return-1 } }
ifn==1&&k%2==1 { return-1 }
ans:=0fori:=0; i < min(n, k-1); i++ {
ifnums[i] > ans { ans = nums[i] }
}
ifk < n&&nums[k] > ans { ans = nums[k] }
returnans}
1
2
3
4
5
6
7
8
9
10
11
12
13
classSolution {
publicintmaximumTop(int[] nums, int k) {
int n = nums.length;
if (n == 0) return-1;
if (k == 0) return nums[0];
if (k == 1) return n >= 2 ? nums[1] : -1;
if (n == 1 && k % 2 == 1) return-1;
int ans = 0;
for (int i = 0; i < Math.min(n, k-1); i++) ans = Math.max(ans, nums[i]);
if (k < n) ans = Math.max(ans, nums[k]);
return ans;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
classSolution {
funmaximumTop(nums: IntArray, k: Int): Int {
val n = nums.size
if (n ==0) return -1if (k ==0) return nums[0]
if (k ==1) returnif (n >=2) nums[1] else -1if (n ==1&& k % 2==1) return -1var ans = 0for (i in0 until minOf(n, k-1)) ans = maxOf(ans, nums[i])
if (k < n) ans = maxOf(ans, nums[k])
return ans
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
classSolution:
defmaximumTop(self, nums: list[int], k: int) -> int:
n = len(nums)
if n ==0:
return-1if k ==0:
return nums[0]
if k ==1:
return nums[1] if n >=2else-1if n ==1and k %2==1:
return-1 ans = max(nums[:min(n, k-1)]) if k >1else float('-inf')
if k < n:
ans = max(ans, nums[k])
return ans
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
impl Solution {
pubfnmaximum_top(nums: Vec<i32>, k: i32) -> i32 {
let n = nums.len() asi32;
if n ==0 { return-1; }
if k ==0 { return nums[0]; }
if k ==1 { returnif n >=2 { nums[1] } else { -1 } };
if n ==1&& k %2==1 { return-1; }
letmut ans =0;
for i in0..std::cmp::min(n, k-1) {
ans = ans.max(nums[i asusize]);
}
if k < n { ans = ans.max(nums[k asusize]); }
ans
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
classSolution {
maximumTop(nums: number[], k: number):number {
constn=nums.length;
if (n===0) return-1;
if (k===0) returnnums[0];
if (k===1) returnn>=2?nums[1] :-1;
if (n===1&&k%2===1) return-1;
letans=0;
for (leti=0; i< Math.min(n, k-1); i++) ans= Math.max(ans, nums[i]);
if (k<n) ans= Math.max(ans, nums[k]);
returnans;
}
}