logo

Subarray contigu de la suma més gran (algoritme de Kadane)

Donada una matriu arr[] de mida N . La tasca és trobar la suma del subarray contigu dins d'a arr[] amb la suma més gran.

Exemple:



Entrada: arr = {-2,-3,4,-1,-2,1,5,-3}
Sortida: 7
Explicació: El subbarrat {4,-1, -2, 1, 5} té la suma més gran 7.

Entrada: arr = {2}
Sortida: 2
Explicació: El subbarray {2} té la suma més gran 1.

Entrada: arr = {5,4,1,7,8}
Sortida: 25
Explicació: El subbarrat {5,4,1,7,8} té la suma més gran 25.



algorisme kadane

Solució de problemes recomanats

La idea de algorisme de Kadane és mantenir una variable max_ending_aquí que emmagatzema la suma màxima contigua que acaba en l'índex actual i una variable max_fins_aquí emmagatzema la suma màxima de subarray contigua trobada fins ara, cada vegada que hi ha un valor de suma positiva max_ending_aquí compara-ho amb max_fins_aquí i actualitzar max_fins_aquí si és més gran que max_fins_aquí .

Així que el principal Intuïció darrere Algoritme de Kadane és,



  • Es descarta la subbarra amb suma negativa ( assignant max_ending_here = 0 al codi ).
  • Portem subarray fins que doni una suma positiva.

Pseudocodi de l'algorisme de Kadane:

Inicialitzar:
max_fins_aquí = INT_MIN
max_ending_aquí = 0

Bucle per a cada element de la matriu

(a) max_ending_aquí = max_ending_aquí + a[i]
(b) if(max_fins_aquí
max_fins_aquí = max_ending_aquí
(c) if(max_ending_aquí <0)
max_ending_aquí = 0
tornar max_fins_aquí

Il·lustració de l'algoritme de Kadane:

Prenem l'exemple: {-2, -3, 4, -1, -2, 1, 5, -3}

Nota : a la imatge es representa max_so_far Suma_màx i max_ending_aquí per Curr_Sum


Per a i=0, a[0] = -2

què és el mapa java
  • max_ending_aquí = max_ending_aquí + (-2)
  • Estableix max_ending_here = 0 perquè max_ending_here <0
  • i establiu max_fins_a_far = -2

Per a i=1, a[1] = -3

  • max_ending_aquí = max_ending_aquí + (-3)
  • Com que max_ending_here = -3 i max_so_far = -2, max_so_far romandrà -2
  • Estableix max_ending_here = 0 perquè max_ending_here <0

Per a i=2, a[2] = 4

  • max_ending_aquí = max_ending_aquí + (4)
  • max_ending_aquí = 4
  • max_so_far s'actualitza a 4 perquè max_ending_here és superior a max_so_far que era -2 fins ara

Per a i=3, a[3] = -1

  • max_ending_aquí = max_ending_aquí + (-1)
  • max_ending_aquí = 3

Per a i=4, a[4] = -2

  • max_ending_aquí = max_ending_aquí + (-2)
  • max_ending_aquí = 1

Per a i=5, a[5] = 1

  • max_ending_aquí = max_ending_aquí + (1)
  • max_ending_aquí = 2

Per a i=6, a[6] = 5

  • max_ending_aquí = max_ending_aquí + (5)
  • max_ending_aquí =
  • max_so_far s'actualitza a 7 perquè max_ending_here és més gran que max_so_far

Per a i=7, a[7] = -3

  • max_ending_aquí = max_ending_aquí + (-3)
  • max_ending_aquí = 4

Seguiu els passos següents per implementar la idea:

  • Inicialitzar les variables max_fins_aquí = INT_MIN i max_ending_aquí = 0
  • Executeu un bucle for des de 0 a N-1 i per a cada índex i :
    • Afegeix l'arr[i] fins a max_ending_aquí.
    • Si max_so_far és inferior a max_ending_here, actualitzeu max_fins_aquí a max_ending_aquí .
    • Si max_ending_here <0, actualitzeu max_ending_here = 0
  • Torna max_fins_aquí

A continuació es mostra la implementació de l'enfocament anterior.

C++
// C++ program to print largest contiguous array sum #include  using namespace std; int maxSubArraySum(int a[], int size) {  int max_so_far = INT_MIN, max_ending_here = 0;  for (int i = 0; i < size; i++) {  max_ending_here = max_ending_here + a[i];  if (max_so_far < max_ending_here)  max_so_far = max_ending_here;  if (max_ending_here < 0)  max_ending_here = 0;  }  return max_so_far; } // Driver Code int main() {  int a[] = { -2, -3, 4, -1, -2, 1, 5, -3 };  int n = sizeof(a) / sizeof(a[0]);  // Function Call  int max_sum = maxSubArraySum(a, n);  cout << 'Maximum contiguous sum is ' << max_sum;  return 0; }>
Java
// Java program to print largest contiguous array sum import java.io.*; import java.util.*; class Kadane {  // Driver Code  public static void main(String[] args)  {  int[] a = { -2, -3, 4, -1, -2, 1, 5, -3 };  System.out.println('Maximum contiguous sum is '  + maxSubArraySum(a));  }  // Function Call  static int maxSubArraySum(int a[])  {  int size = a.length;  int max_so_far = Integer.MIN_VALUE, max_ending_here  = 0;  for (int i = 0; i < size; i++) {  max_ending_here = max_ending_here + a[i];  if (max_so_far < max_ending_here)  max_so_far = max_ending_here;  if (max_ending_here < 0)  max_ending_here = 0;  }  return max_so_far;  } }>
Python
def GFG(a, size): max_so_far = float('-inf') # Use float('-inf') instead of maxint max_ending_here = 0 for i in range(0, size): max_ending_here = max_ending_here + a[i] if max_so_far < max_ending_here: max_so_far = max_ending_here if max_ending_here < 0: max_ending_here = 0 return max_so_far # Driver function to check the above function a = [-2, -3, 4, -1, -2, 1, 5, -3] print('Maximum contiguous sum is', GFG(a, len(a)))>
C#
// C# program to print largest // contiguous array sum using System; class GFG {  static int maxSubArraySum(int[] a)  {  int size = a.Length;  int max_so_far = int.MinValue, max_ending_here = 0;  for (int i = 0; i < size; i++) {  max_ending_here = max_ending_here + a[i];  if (max_so_far < max_ending_here)  max_so_far = max_ending_here;  if (max_ending_here < 0)  max_ending_here = 0;  }  return max_so_far;  }  // Driver code  public static void Main()  {  int[] a = { -2, -3, 4, -1, -2, 1, 5, -3 };  Console.Write('Maximum contiguous sum is '  + maxSubArraySum(a));  } } // This code is contributed by Sam007_>
Javascript
>
PHP
 // PHP program to print largest // contiguous array sum function maxSubArraySum($a, $size) { $max_so_far = PHP_INT_MIN; $max_ending_here = 0; for ($i = 0; $i < $size; $i++) { $max_ending_here = $max_ending_here + $a[$i]; if ($max_so_far < $max_ending_here) $max_so_far = $max_ending_here; if ($max_ending_here < 0) $max_ending_here = 0; } return $max_so_far; } // Driver code $a = array(-2, -3, 4, -1, -2, 1, 5, -3); $n = count($a); $max_sum = maxSubArraySum($a, $n); echo 'Maximum contiguous sum is ' , $max_sum; // This code is contributed by anuj_67. ?>>

Sortida
Maximum contiguous sum is 7>

Complexitat temporal: O(N)
Espai auxiliar: O(1)

Imprimeix la suma més gran contigua Subbarray:

Per imprimir el subbarrat amb la suma màxima la idea és mantenir començar índex de màxim_sum_final_aquí a l'índex actual de manera que sempre que màxim_sum_fins_aquí s'actualitza amb màxim_sum_final_aquí a continuació, l'índex inicial i l'índex final de subarray es poden actualitzar amb començar i índex actual .

Seguiu els passos següents per implementar la idea:

  • Inicialitzar les variables s , començar, i final amb 0 i max_fins_aquí = INT_MIN i max_ending_aquí = 0
  • Executeu un bucle for des de 0 a N-1 i per a cada índex i :
    • Afegeix l'arr[i] fins a max_ending_aquí.
    • Si max_so_far és inferior a max_ending_here, actualitzeu max_so_far a max_ending_aquí i actualitzeu començar a s i final a i .
    • Si max_ending_here <0, actualitzeu max_ending_here = 0 i s amb i+1 .
  • Imprimeix els valors de l'índex començar a final .

A continuació es mostra la implementació de l'enfocament anterior:

és un personatge especial
C++
// C++ program to print largest contiguous array sum #include  #include  using namespace std; void maxSubArraySum(int a[], int size) {  int max_so_far = INT_MIN, max_ending_here = 0,  start = 0, end = 0, s = 0;  for (int i = 0; i < size; i++) {  max_ending_here += a[i];  if (max_so_far < max_ending_here) {  max_so_far = max_ending_here;  start = s;  end = i;  }  if (max_ending_here < 0) {  max_ending_here = 0;  s = i + 1;  }  }  cout << 'Maximum contiguous sum is ' << max_so_far  << endl;  cout << 'Starting index ' << start << endl  << 'Ending index ' << end << endl; } /*Driver program to test maxSubArraySum*/ int main() {  int a[] = { -2, -3, 4, -1, -2, 1, 5, -3 };  int n = sizeof(a) / sizeof(a[0]);  maxSubArraySum(a, n);  return 0; }>
Java
// Java program to print largest // contiguous array sum import java.io.*; import java.util.*; class GFG {  static void maxSubArraySum(int a[], int size)  {  int max_so_far = Integer.MIN_VALUE,  max_ending_here = 0, start = 0, end = 0, s = 0;  for (int i = 0; i < size; i++) {  max_ending_here += a[i];  if (max_so_far < max_ending_here) {  max_so_far = max_ending_here;  start = s;  end = i;  }  if (max_ending_here < 0) {  max_ending_here = 0;  s = i + 1;  }  }  System.out.println('Maximum contiguous sum is '  + max_so_far);  System.out.println('Starting index ' + start);  System.out.println('Ending index ' + end);  }  // Driver code  public static void main(String[] args)  {  int a[] = { -2, -3, 4, -1, -2, 1, 5, -3 };  int n = a.length;  maxSubArraySum(a, n);  } } // This code is contributed by prerna saini>
Python
# Python program to print largest contiguous array sum from sys import maxsize # Function to find the maximum contiguous subarray # and print its starting and end index def maxSubArraySum(a, size): max_so_far = -maxsize - 1 max_ending_here = 0 start = 0 end = 0 s = 0 for i in range(0, size): max_ending_here += a[i] if max_so_far < max_ending_here: max_so_far = max_ending_here start = s end = i if max_ending_here < 0: max_ending_here = 0 s = i+1 print('Maximum contiguous sum is %d' % (max_so_far)) print('Starting Index %d' % (start)) print('Ending Index %d' % (end)) # Driver program to test maxSubArraySum a = [-2, -3, 4, -1, -2, 1, 5, -3] maxSubArraySum(a, len(a))>
C#
// C# program to print largest // contiguous array sum using System; class GFG {  static void maxSubArraySum(int[] a, int size)  {  int max_so_far = int.MinValue, max_ending_here = 0,  start = 0, end = 0, s = 0;  for (int i = 0; i < size; i++) {  max_ending_here += a[i];  if (max_so_far < max_ending_here) {  max_so_far = max_ending_here;  start = s;  end = i;  }  if (max_ending_here < 0) {  max_ending_here = 0;  s = i + 1;  }  }  Console.WriteLine('Maximum contiguous '  + 'sum is ' + max_so_far);  Console.WriteLine('Starting index ' + start);  Console.WriteLine('Ending index ' + end);  }  // Driver code  public static void Main()  {  int[] a = { -2, -3, 4, -1, -2, 1, 5, -3 };  int n = a.Length;  maxSubArraySum(a, n);  } } // This code is contributed // by anuj_67.>
Javascript
>
PHP
 // PHP program to print largest  // contiguous array sum function maxSubArraySum($a, $size) { $max_so_far = PHP_INT_MIN; $max_ending_here = 0; $start = 0; $end = 0; $s = 0; for ($i = 0; $i < $size; $i++) { $max_ending_here += $a[$i]; if ($max_so_far < $max_ending_here) { $max_so_far = $max_ending_here; $start = $s; $end = $i; } if ($max_ending_here < 0) { $max_ending_here = 0; $s = $i + 1; } } echo 'Maximum contiguous sum is '. $max_so_far.'
'; echo 'Starting index '. $start . '
'. 'Ending index ' . $end . '
'; } // Driver Code $a = array(-2, -3, 4, -1, -2, 1, 5, -3); $n = sizeof($a); maxSubArraySum($a, $n); // This code is contributed // by ChitraNayal ?>>

Sortida
Maximum contiguous sum is 7 Starting index 2 Ending index 6>

Complexitat temporal: O(n)
Espai auxiliar: O(1)

Suma més gran contigua Subbarray utilitzant Programació dinàmica :

Per a cada índex i, DP[i] emmagatzema el màxim possible Subbarray contigu de suma més gran que acaba a l'índex i, i per tant podem calcular DP[i] utilitzant la transició d'estat esmentada:

  • DP[i] = màx(DP[i-1] + arr[i] , arr[i] )

A continuació es mostra la implementació:

C++
// C++ program to print largest contiguous array sum #include  using namespace std; void maxSubArraySum(int a[], int size) {  vector dp (mida, 0);  dp[0] = a[0];  int ans = dp[0];  per (int i = 1; i< size; i++) {  dp[i] = max(a[i], a[i] + dp[i - 1]);  ans = max(ans, dp[i]);  }  cout << ans; } /*Driver program to test maxSubArraySum*/ int main() {  int a[] = { -2, -3, 4, -1, -2, 1, 5, -3 };  int n = sizeof(a) / sizeof(a[0]);  maxSubArraySum(a, n);  return 0; }>
Java
import java.util.Arrays; public class Main {  // Function to find the largest contiguous array sum  public static void maxSubArraySum(int[] a) {  int size = a.length;  int[] dp = new int[size]; // Create an array to store intermediate results  dp[0] = a[0]; // Initialize the first element of the intermediate array with the first element of the input array  int ans = dp[0]; // Initialize the answer with the first element of the intermediate array  for (int i = 1; i < size; i++) {  // Calculate the maximum of the current element and the sum of the current element and the previous result  dp[i] = Math.max(a[i], a[i] + dp[i - 1]);  // Update the answer with the maximum value encountered so far  ans = Math.max(ans, dp[i]);  }  // Print the maximum contiguous array sum  System.out.println(ans);  }  public static void main(String[] args) {  int[] a = { -2, -3, 4, -1, -2, 1, 5, -3 };  maxSubArraySum(a); // Call the function to find and print the maximum contiguous array sum  } } // This code is contributed by shivamgupta310570>
Python
# Python program for the above approach def max_sub_array_sum(a, size): # Create a list to store intermediate results dp = [0] * size # Initialize the first element of the list with the first element of the array dp[0] = a[0] # Initialize the answer with the first element of the array ans = dp[0] # Loop through the array starting from the second element for i in range(1, size): # Choose the maximum value between the current element and the sum of the current element # and the previous maximum sum (stored in dp[i - 1]) dp[i] = max(a[i], a[i] + dp[i - 1]) # Update the overall maximum sum ans = max(ans, dp[i]) # Print the maximum contiguous subarray sum print(ans) # Driver program to test max_sub_array_sum if __name__ == '__main__': # Sample array a = [-2, -3, 4, -1, -2, 1, 5, -3] # Get the length of the array n = len(a) # Call the function to find the maximum contiguous subarray sum max_sub_array_sum(a, n) # This code is contributed by Susobhan Akhuli>
C#
using System; class MaxSubArraySum {  // Function to find and print the maximum sum of a  // subarray  static void FindMaxSubArraySum(int[] arr, int size)  {  // Create an array to store the maximum sum of  // subarrays  int[] dp = new int[size];  // Initialize the first element of dp with the first  // element of arr  dp[0] = arr[0];  // Initialize a variable to store the final result  int ans = dp[0];  // Iterate through the array to find the maximum sum  for (int i = 1; i < size; i++) {  // Calculate the maximum sum ending at the  // current position  dp[i] = Math.Max(arr[i], arr[i] + dp[i - 1]);  // Update the final result with the maximum sum  // found so far  ans = Math.Max(ans, dp[i]);  }  // Print the maximum sum of the subarray  Console.WriteLine(ans);  }  // Driver program to test FindMaxSubArraySum  static void Main()  {  // Example array  int[] arr = { -2, -3, 4, -1, -2, 1, 5, -3 };  // Calculate and print the maximum subarray sum  FindMaxSubArraySum(arr, arr.Length);  } }>
Javascript
// Javascript program to print largest contiguous array sum // Function to find the largest contiguous array sum function maxSubArraySum(a) {  let size = a.length;  // Create an array to store intermediate results  let dp = new Array(size);  // Initialize the first element of the intermediate array with the first element of the input array  dp[0] = a[0];  // Initialize the answer with the first element of the intermediate array  let ans = dp[0];    for (let i = 1; i < size; i++) {  // Calculate the maximum of the current element and the sum of the current element and the previous result  dp[i] = Math.max(a[i], a[i] + dp[i - 1]);  // Update the answer with the maximum value encountered so far  ans = Math.max(ans, dp[i]);  }  // Print the maximum contiguous array sum  console.log(ans); } let a = [-2, -3, 4, -1, -2, 1, 5, -3]; // Call the function to find and print the maximum contiguous array sum maxSubArraySum(a);>

Sortida
7>


Problema de pràctica:

Donada una matriu de nombres enters (possiblement alguns elements negatius), escriviu un programa en C per esbrinar el *producte màxim* possible multiplicant 'n' nombres enters consecutius a la matriu on n ? ARRAY_SIZE. A més, imprimiu el punt de partida de la subbarra de productes màxim.