Consultas para verificar si los subarreglos en un rango dado de índices no son decrecientes o no

Dada una array arr[] que consta de N enteros y una array Q[][2] que consta de K consultas de tipo {L, R} , la tarea de cada consulta es comprobar si el subarreglo {arr[L], .. arr[R]} de la array es no decreciente o no. Si se encuentra que es cierto, escriba «Sí» . De lo contrario, escriba “ No ”.

Ejemplos:

Entrada: arr[] = {1, 7, 3, 4, 9}, K = 2, Q[][] = {{1, 2}, {2, 4}}
Salida:

No
Explicación:
Consulta 1: El subarreglo en el rango [1, 2] es {1, 7} que no es decreciente. Por lo tanto, imprima «Sí».
Consulta 2: el subarreglo en el rango [2, 4] es {7, 3, 4, 9}, que no es no decreciente. Por lo tanto, escriba “No”.

Entrada: arr[] = {3, 5, 7, 1, 8, 2}, K = 3, Q[][] = {{1, 3}, {2, 5}, {4, 6}}
Salida :

No
No

Enfoque ingenuo: el enfoque más simple es recorrer la array sobre el rango de índices [L, R] para cada consulta y verificar si la subarreglo está ordenada en orden ascendente o no. Si se encuentra que es cierto, escriba «Sí» . De lo contrario, escriba “ No ”. 

Complejidad temporal: O(N * Q)
Espacio auxiliar: O(1)

Enfoque eficiente: el enfoque anterior se puede optimizar calculando previamente el recuento de elementos adyacentes que satisfacen arr[i] > arr[i + 1] en el rango [1, i], lo que da como resultado un cálculo en tiempo constante de números de tales índices en el rango [I, D – 1] . Siga los pasos a continuación para resolver el problema:

  • Inicialice una array, digamos pre[] , para almacenar el recuento de índices desde el índice inicial, con elementos adyacentes en orden creciente.
  • Itere sobre el rango [1, N – 1] y asigne pre[i] = pre[i – 1] y luego incremente pre[i] en 1 , si arr[i – 1] > arr[i] .
  • Recorra la array Q[][] y para cada consulta {L, R} , si pre[R – 1] – pre[L – 1] es 0 , entonces imprima “Sí” . De lo contrario, escriba “ No ”.

A continuación se muestra la implementación del enfoque anterior:

C++

// C++ program for the above approach
#include <bits/stdc++.h>
using namespace std;
 
// Function to perform queries to check if
// subarrays over a given range of indices
//  is non-decreasing or not
void checkSorted(int arr[], int N,
                 vector<vector<int> >& Q)
{
    // Stores count of indices up to i
    // such that arr[i] > arr[i + 1]
    int pre[N] = { 0 };
 
    // Traverse the array
    for (int i = 1; i < N; i++) {
 
        // Update pre[i]
        pre[i] = pre[i - 1]
                 + (arr[i - 1] > arr[i]);
    }
 
    // Traverse the array Q[][]
    for (int i = 0; i < Q.size(); i++) {
 
        int l = Q[i][0];
        int r = Q[i][1] - 1;
 
        // If pre[r] - pre[l-1] exceeds 0
        if (pre[r] - pre[l - 1] == 0)
            cout << "Yes" << endl;
        else
            cout << "No" << endl;
    }
}
 
// Driver Code
int main()
{
    int arr[] = { 1, 7, 3, 4, 9 };
    vector<vector<int> > Q = { { 1, 2 },
                               { 2, 4 } };
 
    int N = sizeof(arr) / sizeof(arr[0]);
 
    // Function Call
    checkSorted(arr, N, Q);
 
    return 0;
}

Java

// Java program for the above approach
import java.io.*;
class GFG
{
 
  // Function to perform queries to check if
  // subarrays over a given range of indices
  //  is non-decreasing or not
  static void checkSorted(int[] arr, int N, int[][] Q)
  {
 
    // Stores count of indices up to i
    // such that arr[i] > arr[i + 1]
    int[] pre = new int[N];
 
    // Traverse the array
    for (int i = 1; i < N; i++)
    {
 
      // Update pre[i]
      if((arr[i - 1] > arr[i]))
        pre[i] = pre[i - 1] + 1;
      else
        pre[i] = pre[i - 1];
    }
 
    // Traverse the array Q[][]
    for (int i = 0; i < Q.length; i++)
    {
      int l = Q[i][0];
      int r = Q[i][1] - 1;
 
      // If pre[r] - pre[l-1] exceeds 0
      if (pre[r] - pre[l - 1] == 0)
        System.out.println("Yes");
      else
        System.out.println("No");
    }
  }
 
  // Driver Code
  public static void main(String[] args)
  {
    int arr[] = { 1, 7, 3, 4, 9 };
    int Q[][] = { { 1, 2 }, { 2, 4 } };
 
    int N = arr.length;
 
    // Function Call
    checkSorted(arr, N, Q);
  }
}
 
// This code is contributed by Dharanendra L V.

Python3

# Python3 program for the above approach
 
# Function to perform queries to check if
# subarrays over a given range of indices
# is non-decreasing or not
def checkSorted(arr, N, Q):
   
    # Stores count of indices up to i
    # such that arr[i] > arr[i + 1]
    pre = [0]*(N)
 
    # Traverse the array
    for i in range(1, N):
 
        # Update pre[i]
        pre[i] = pre[i - 1] + (arr[i - 1] > arr[i])
 
    # Traverse the array Q[][]
    for i in range(len(Q)):
        l = Q[i][0]
        r = Q[i][1] - 1
 
        # If pre[r] - pre[l-1] exceeds 0
        if (pre[r] - pre[l - 1] == 0):
            print("Yes")
        else:
            print("No")
 
# Driver Code
if __name__ == '__main__':
    arr =[1, 7, 3, 4, 9]
    Q = [ [ 1, 2 ],[ 2, 4 ] ]
    N = len(arr)
 
    # Function Call
    checkSorted(arr, N, Q)
 
# This code is contributed by mohit kumar 29.

C#

// C# program for the above approach
 
using System;
 
public class GFG{
     
    // Function to perform queries to check if
    // subarrays over a given range of indices
    // is non-decreasing or not
    static void checkSorted(int[] arr, int N, int[,] Q)
    {
        // Stores count of indices up to i
    // such that arr[i] > arr[i + 1]
    int[] pre = new int[N];
  
    // Traverse the array
    for (int i = 1; i < N; i++)
    {
  
      // Update pre[i]
      if((arr[i - 1] > arr[i]))
      {
          pre[i] = pre[i - 1] + 1;
      }
      else
      {  pre[i] = pre[i - 1];}
    }
  
    // Traverse the array Q[][]
    for (int i = 0; i < Q.GetLength(0); i++)
    {
         
      int l = Q[i,0];
      int r = Q[i,1] - 1;
  
      // If pre[r] - pre[l-1] exceeds 0
      if (pre[r] - pre[l - 1] == 0)
      {  Console.WriteLine("Yes");}
      else
        {Console.WriteLine("No");}
    }
    }
     
    // Driver Code
 
    static public void Main (){
         
        int[] arr = { 1, 7, 3, 4, 9 };
    int[,] Q = { { 1, 2 }, { 2, 4 } };
  
    int N = arr.Length;
  
    // Function Call
    checkSorted(arr, N, Q);
    }
}
 
// This code is contributed by avanitrachhadiya2155

Javascript

<script>
 
// Javascript program for the above approach
 
// Function to perform queries to check if
// subarrays over a given range of indices
//  is non-decreasing or not
function checkSorted(arr, N, Q)
{
     
    // Stores count of indices up to i
    // such that arr[i] > arr[i + 1]
    var pre = Array(N).fill(0);
 
    // Traverse the array
    for(var i = 1; i < N; i++)
    {
         
        // Update pre[i]
        pre[i] = pre[i - 1] +
                (arr[i - 1] > arr[i]);
    }
 
    // Traverse the array Q[][]
    for(var i = 0; i < Q.length; i++)
    {
        var l = Q[i][0];
        var r = Q[i][1] - 1;
 
        // If pre[r] - pre[l-1] exceeds 0
        if (pre[r] - pre[l - 1] == 0)
            document.write("Yes" + "<br>");
        else
            document.write("No" + "<br>");
    }
}
 
// Driver Code
var arr = [ 1, 7, 3, 4, 9 ];
var Q = [ [ 1, 2 ], [ 2, 4 ] ];
var N = arr.length;
 
// Function Call
checkSorted(arr, N, Q);
 
// This code is contributed by noob2000
 
</script>
Producción: 

Yes
No

 

Complejidad temporal: O(N)
Espacio auxiliar: O(1)

Publicación traducida automáticamente

Artículo escrito por pkjrockzz y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *