Min Max Riddle


Problem Statement :


Given an integer array of size n, find the maximum of the minimum(s) of every window size in the array. The window size varies from 1 to n.

For example, given arr = [6, 3 , 5 ,  1,  12 ] consider window sizes of 1 through 5. Windows of size  are . The maximum value of the minimum values of these windows is . Windows of size  are  and their minima are ( 3, 3, 1, 1 ). The maximum of these values is . Continue this process through window size  to finally consider the entire array. All of the answers are 12,  3 , 3 , 1 , 1 .

Function Description

Complete the riddle function in the editor below. It must return an array of integers representing the maximum minimum value for each window size from  to .

riddle has the following parameter(s):

arr: an array of integers


Input Format

The first line contains a single integer, n, the size of arr.
The second line contains n space-separated integers, each an arr[ i ].


Constraints

1   <=   n   <=  10^6
1   <=   arr[ i ]  <=  10^9


Output Format

Single line containing  space-separated integers denoting the output for each window size from 1 to n.



Solution :



title-img




                        Solution in C++ :

In   C ++   :





#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n,i;
    cin>>n;

    int a[n];
    for(i=0;i<n;++i) {
        cin>>a[i];
    }

    stack<int> s;
    int left[n],right[n],ans[n+1],len;

    for(i=0;i<n;++i) {
        left[i]=-1,right[i]=n;
    }

    for(i=0;i<n;++i) {
        while(!s.empty() && a[s.top()] >= a[i]) {
            s.pop();
        }
        if(!s.empty()) {
            left[i]=s.top();
        }
        s.push(i);
    }

    while(!s.empty()) {
        s.pop();
    }

    for(i=n-1;i>=0;--i) {
        while(!s.empty() && a[s.top()] >= a[i]) {
            s.pop();
        }
        if(!s.empty()) {
            right[i]=s.top();
        }
        s.push(i);
    }

    memset(ans, 0, sizeof ans);
    for(i=0;i<n;++i) {
        len = right[i]-left[i]-1;
        ans[len]=max(ans[len], a[i]);
    }

    for(i=n-1;i>=1;--i) {
        ans[i]=max(ans[i], ans[i+1]);
    }

    for(i=1;i<=n;++i) {
        cout<<ans[i]<<" ";
    }
    cout<<endl;
    return 0;
}
                    


                        Solution in Java :

In   Java   :





static long[] riddle(long[] arr) {
        // complete the function
       int n=arr.length;
       Stack<Integer> st=new Stack<>();
       int[] left=new int[n+1];
       int[] right=new int[n+1];
       for(int i=0;i<n;i++){
           left[i]=-1;
           right[i]=n;
       }
       for(int i=0;i<n;i++){
           while(!st.isEmpty() && arr[st.peek()]>=arr[i])
               st.pop();
           
           if(!st.isEmpty())
               left[i]=st.peek();
           
           st.push(i);
       }
       while(!st.isEmpty()){
           st.pop();
       }

       for(int i=n-1;i>=0;i--){
           while(!st.isEmpty() && arr[st.peek()]>=arr[i])
               st.pop();
           
           if(!st.isEmpty())
               right[i]=st.peek();
           
           st.push(i);
       }
        long ans[] = new long[n+1]; 
        for (int i=0; i<=n; i++) {
            ans[i] = 0; 
        }
         for (int i=0; i<n; i++) 
        { 
            int len = right[i] - left[i] - 1; 
            ans[len] = Math.max(ans[len], arr[i]); 
        }
        for (int i=n-1; i>=1; i--) {
            ans[i] = Math.max(ans[i], ans[i+1]);  
        }
       long[] res=new long[n];
        for (int i=1; i<=n; i++) {
            res[i-1]=ans[i];
        }
        return res;
    }
                    




View More Similar Problems

Mr. X and His Shots

A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has N favorite shots. Each shot has a particular range. The range of the ith shot is from Ai to Bi. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player i can field from Ci to Di. You are given the N favorite shots of M

View Solution →

Jim and the Skyscrapers

Jim has invented a new flying object called HZ42. HZ42 is like a broom and can only fly horizontally, independent of the environment. One day, Jim started his flight from Dubai's highest skyscraper, traveled some distance and landed on another skyscraper of same height! So much fun! But unfortunately, new skyscrapers have been built recently. Let us describe the problem in one dimensional space

View Solution →

Palindromic Subsets

Consider a lowercase English alphabetic letter character denoted by c. A shift operation on some c turns it into the next letter in the alphabet. For example, and ,shift(a) = b , shift(e) = f, shift(z) = a . Given a zero-indexed string, s, of n lowercase letters, perform q queries on s where each query takes one of the following two forms: 1 i j t: All letters in the inclusive range from i t

View Solution →

Counting On a Tree

Taylor loves trees, and this new challenge has him stumped! Consider a tree, t, consisting of n nodes. Each node is numbered from 1 to n, and each node i has an integer, ci, attached to it. A query on tree t takes the form w x y z. To process a query, you must print the count of ordered pairs of integers ( i , j ) such that the following four conditions are all satisfied: the path from n

View Solution →

Polynomial Division

Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie

View Solution →

Costly Intervals

Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the

View Solution →