Skip to main content

Next Greater Element To The Right

1. You are given a number n, representing the size of array a.

2. You are given n numbers, representing elements of array a.

3. You are required to "next greater element on the right" for all elements of array

4. Input and output is handled for you.


"Next greater element on the right" of an element x is defined as the first element to right of x having value greater than x.

Note: If an element does not have any element on it's right side greater than it, consider -1 as it's "next greater element on right"

e.g.

for the array [2 5 9 3 1 12 6 8 7]

Next greater for 2 is 5

Next greater for 5 is 9

Next greater for 9 is 12

Next greater for 3 is 12

Next greater for 1 is 12

Next greater for 12 is -1

Next greater for 6 is 8

Next greater for 8 is -1

Next greater for 7 is -1

Input Format

Input is managed for you

Output Format

Output is managed for you

Constraints

0 <= n < 10^5

-10^9 <= a[i] <= 10^9

Sample Input

5

5

3

8

-2

7

Sample Output

8

8

-1

7

-1


Solution:

import java.io.*;

import java.util.*;


public class Main{

  public static void display(int[] a){

    StringBuilder sb = new StringBuilder();


    for(int val: a){

      sb.append(val + "\n");

    }

    System.out.println(sb);

  }

public static void main(String[] args) throws Exception {

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));


    int n = Integer.parseInt(br.readLine());

    int[] a = new int[n];

    for(int i = 0; i < n; i++){

       a[i] = Integer.parseInt(br.readLine());

    }


    int[] nge = solve(a);

    display(nge);

 }


 public static int[] solve(int[] arr){

   // solve

    Stack<Integer> s = new Stack<Integer>();

    int n  = arr.length;

    int[] res = new int[n];

    res[n-1] = -1;

    s.push(arr[n-1]);

    for(int i=n-2;i>=0;i--){

        while(!s.empty() && s.peek() < arr[i])

            s.pop();

        if(s.empty())

            res[i] = -1;

        else res[i] = s.peek();

        s.push(arr[i]);

    }

   return res;

 }

}

Comments

Popular posts from this blog

NTA Declares JEE (Main)-2021 (February Session) NTA Scores for Paper 1 (B.E./B.Tech.) | JEE Mains 2021

The JEE (Main) Examination for B.E./B.Tech. was conducted by NTA from 24 to 26 February 2021. A total number of 6.52 lacs candidates were registered for Paper 1 (B.E. /B. Tech.) in this examination.  The Examination was conducted in 331 Cities [including 9 cities outside India in Colombo, Doha, Dubai, Kathmandu, Muscat, Riyadh, Sharjah, Singapore, and Kuwait] in 828 Centres.  A total number of 742 Observers, 261 City-Coordinators, 19 Regional Coordinators, 06 Special Coordinators & 02 National Coordinators were deployed at these centres to oversee the smooth and fair conduct of the examination.  The examination for Paper 1 (B.E. /B. Tech.) was conducted in a total of 6 shifts from 24 to 26 February 2021. The scores of Paper 1 (B.E./B.Tech.) are being declared today.   The Examination was conducted for the first time in 13 languages (English, Hindi, Gujarati along with Assamese, Bengali, Kannada, Malayalam, Marathi, Odia, Punjabi, Tamil, Telugu, and Urdu).  T...

CSAB Special round for NITs, IIITs and CFTIS 2018

CSAB Special round for NITs, IIITs and CFTIS 2 018 After the  seat allotment of JoSAA 2018  is completed, CSAB will conduct a special round of counselling for NITs, IIITs and CFTIs through CSAB. The allotment will be open only for those candidates who have successfully completed their  JEE Main 2018   examination and secured valid scores. Exclusive:   JoSAA Counselling 2021, Documents Required... CSAB 2018 Special Round 1 Seat Allotment Result CSAB 2018 Special Round 1 Opening and Closing Rank Important Dates of CSAB Special round for NITs, IIITs and CFTIS 2018 S.No Events Important Dates (Tentative) 1 Registration and Choice Filling Fourth week of July 2018 2 Announcement of Seat Allotment Fourth week of July 2018 3 Reporting to Allotted Institutes First week of August 2018 click here to get full schedule... Eligibility Criteria of CSAB Special round ...

Print Permutations

 1. You are given a string str. 2. Complete the body of printPermutations function - without changing signature - to calculate and print all permutations of str. Use sample input and output to take idea about permutations. Note -> The online judge can't force you to write the function recursively but that is what the spirit of question is. Write recursive and not iterative logic. The purpose of the question is to aid learning recursion and not test you. Input Format A string str Output Format Permutations of str in order hinted by Sample output Constraints 0 <= str.length <= 7 Sample Input abc Sample Output abc acb bac bca cab cba Solution: import java.io.*; import java.util.*; public class Main {     public static void main(String[] args) throws Exception {         Scanner sc = new Scanner(System.in);         String str = sc.nextLine();         printPermutations(str,"");     }     pu...