Stack operations

3.3

78 votes
Arrays, Basic Programming, Data Structures, Easy, Implementation, Stacks, easy
Problem

You are given a stack of N integers. In one operation, you can either pop an element from the stack or push any popped element into the stack. You need to maximize the top element of the stack after performing exactly K operations. If the stack becomes empty after performing K operations and there is no other way for the stack to be non-empty, print -1.

  

Input format :

  • The first line of input consists of two space-separated integers N and K.
  • The second line of input consists N space-separated integers denoting the elements of the stack. The first element represents the top of the stack and the last element represents the bottom of the stack.

Output format :

  • Print the maximum possible top element of the stack after performing exactly K operations.

Constraints : 

  • 1N2106
  • 1Ai1018
  • 1K109
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

In 3 operations, we remove 1,2,4 and in the fourth operation, we push 4 back into the stack. Hence, 4 is the answer.

Editor Image

?