Dada una array arr[] de N elementos y un número entero K , la tarea es encontrar el número de subarreglos no decrecientes de longitud mayor o igual a K .
Ejemplos:
Entrada: arr[] = {1, 2, 3}, K = 2
Salida: 3
{1, 2}, {2, 3} y {1, 2, 3} son los subarreglos válidos.
Entrada: arr[] = {3, 2, 1}, K = 1
Salida: 3
Enfoque ingenuo: un enfoque simple es generar todos los subconjuntos de longitud mayor o igual a K y luego verificar si el subconjunto cumple la condición. Por lo tanto, la complejidad temporal del enfoque será O(N 3 ) .
Enfoque eficiente: un mejor enfoque será utilizar la técnica de dos puntos .
- Para cualquier índice i , encuentre el índice j más grande tal que el subarreglo arr[i…j] no sea decreciente. Esto se puede lograr simplemente aumentando el valor de j , comenzando desde i + 1 y verificando si arr[j] es mayor que arr[j – 1] .
- Digamos que la longitud del subarreglo encontrado en el paso anterior es L . Calcule X = max(0, L – K + 1) y (X * (X + 1)) / 2 se agregarán a la respuesta final. Esto se debe a que para una array de longitud L , el número de sub-arrays con longitud ≥ K.
- Número de dichos subconjuntos a partir del primer elemento = L – K + 1 = X .
- Número de dichos subconjuntos a partir del segundo elemento = L – K = X – 1 .
- Número de dichos subconjuntos a partir del tercer elemento = L – K – 1 = X – 2 .
- Y así sucesivamente hasta 0, es decir, 1 + 2 + 3 + .. + X = (X * (X + 1)) / 2 .
A continuación se muestra la implementación del enfoque anterior:
C++
// C++ implementation of the approach #include <bits/stdc++.h> using namespace std; // Function to return the required count int findCnt(int* arr, int n, int k) { // To store the final result int ret = 0; // Two pointer loop int i = 0; while (i < n) { // Initialising j int j = i + 1; // Looping till the subarray increases while (j < n and arr[j] >= arr[j - 1]) j++; int x = max(0, j - i - k + 1); // Update ret ret += (x * (x + 1)) / 2; // Update i i = j; } // Return ret return ret; } // Driver code int main() { int arr[] = { 5, 4, 3, 2, 1 }; int n = sizeof(arr) / sizeof(int); int k = 2; cout << findCnt(arr, n, k); return 0; }
Java
// Java implementation of the approach class GFG { // Function to return the required count static int findCnt(int []arr, int n, int k) { // To store the final result int ret = 0; // Two pointer loop int i = 0; while (i < n) { // Initialising j int j = i + 1; // Looping till the subarray increases while (j < n && arr[j] >= arr[j - 1]) j++; int x = Math.max(0, j - i - k + 1); // Update ret ret += (x * (x + 1)) / 2; // Update i i = j; } // Return ret return ret; } // Driver code public static void main(String []args) { int arr[] = { 5, 4, 3, 2, 1 }; int n = arr.length; int k = 2; System.out.println(findCnt(arr, n, k)); } } // This code is contributed by Rajput-Ji
Python3
# Python3 implementation of the approach # Function to return the required count def findCnt(arr, n, k) : # To store the final result ret = 0; # Two pointer loop i = 0; while (i < n) : # Initialising j j = i + 1; # Looping till the subarray increases while (j < n and arr[j] >= arr[j - 1]) : j += 1; x = max(0, j - i - k); # Update ret ret += (x * (x + 1)) / 2; # Update i i = j; # Return ret return ret; # Driver code if __name__ == "__main__" : arr = [ 5, 4, 3, 2, 1 ]; n = len(arr); k = 2; print(findCnt(arr, n, k)); # This code is contributed by AnkitRai01
C#
// C# implementation of the approach using System; class GFG { // Function to return the required count static int findCnt(int []arr, int n, int k) { // To store the final result int ret = 0; // Two pointer loop int i = 0; while (i < n) { // Initialising j int j = i + 1; // Looping till the subarray increases while (j < n && arr[j] >= arr[j - 1]) j++; int x = Math.Max(0, j - i - k + 1); // Update ret ret += (x * (x + 1)) / 2; // Update i i = j; } // Return ret return ret; } // Driver code public static void Main(String []args) { int []arr = { 5, 4, 3, 2, 1 }; int n = arr.Length; int k = 2; Console.WriteLine(findCnt(arr, n, k)); } } // This code is contributed by PrinciRaj1992
Javascript
<script> // Javascript implementation of the approach // Function to return the required count function findCnt(arr, n, k) { // To store the final result var ret = 0; // Two pointer loop var i = 0; while (i < n) { // Initialising j var j = i + 1; // Looping till the subarray increases while (j < n && arr[j] >= arr[j - 1]) j++; var x = Math.max(0, j - i - k + 1); // Update ret ret += (x * (x + 1)) / 2; // Update i i = j; } // Return ret return ret; } // Driver code var arr = [5, 4, 3, 2, 1]; var n = arr.length; var k = 2; document.write( findCnt(arr, n, k)); </script>
0
Complejidad de tiempo: O(n)
Espacio Auxiliar: O(1)
Publicación traducida automáticamente
Artículo escrito por DivyanshuShekhar1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA