Givet en array arr[] av storlek N . Uppgiften är att hitta summan av den sammanhängande delmatrisen inom a arr[] med den största summan.
Exempel:
Inmatning: arr = {-2,-3,4,-1,-2,1,5,-3}
Produktion: 7
Förklaring: Undermatrisen {4,-1, -2, 1, 5} har den största summan 7.Inmatning: arr = {2}
Produktion: 2
Förklaring: Undermatrisen {2} har den största summan 1.Inmatning: arr = {5,4,1,7,8}
Produktion: 25
Förklaring: Undermatrisen {5,4,1,7,8} har den största summan 25.
Idéen av Kadanes algoritm är att behålla en variabel max_ending_här som lagrar den maximala summan sammanhängande subarray som slutar på aktuellt index och en variabel max_hittills lagrar den maximala summan av sammanhängande subarray som hittats hittills, varje gång det finns ett positivt summavärde i max_ending_här jämför det med max_hittills och uppdatera max_hittills om det är större än max_hittills .
Så det viktigaste Intuition Bakom Kadanes algoritm är,
- Undermatrisen med negativ summa kasseras ( genom att tilldela max_ending_here = 0 i kod ).
- Vi bär subarray tills det ger positiv summa.
Pseudokod för Kadanes algoritm:
Initiera:
max_so_far = INT_MIN
max_ending_here = 0Loop för varje element i arrayen
(a) max_ending_here = max_ending_here + a[i]
(b) om(max_hittills
max_so_far = max_slut_här
(c) if(max_ending_here <0)
max_ending_here = 0
retur max_hittills
Illustration av Kadanes algoritm:
Låt oss ta exemplet: {-2, -3, 4, -1, -2, 1, 5, -3}
Notera : i bilden representeras max_so_far av Max_Sum och max_ending_here by Curr_Sum
För i=0, a[0] = -2
heapify sortera
- max_ending_here = max_ending_here + (-2)
- Sätt max_ending_here = 0 eftersom max_ending_here <0
- och ställ in max_so_far = -2
För i=1, a[1] = -3
- max_ending_here = max_ending_here + (-3)
- Eftersom max_ending_here = -3 och max_so_far = -2, förblir max_so_far -2
- Sätt max_ending_here = 0 eftersom max_ending_here <0
För i=2 är a[2] = 4
- max_ending_here = max_ending_here + (4)
- max_ending_here = 4
- max_so_far uppdateras till 4 eftersom max_ending_here är större än max_so_far som var -2 till nu
För i=3, a[3] = -1
- max_ending_here = max_ending_here + (-1)
- max_ending_here = 3
För i=4, a[4] = -2
- max_ending_here = max_ending_here + (-2)
- max_ending_here = 1
För i=5 är a[5] = 1
- max_ending_here = max_ending_here + (1)
- max_ending_here = 2
För i=6 är a[6] = 5
- max_ending_here = max_ending_here + (5)
- max_ending_here =
- max_so_far uppdateras till 7 eftersom max_ending_here är större än max_so_far
För i=7, a[7] = -3
- max_ending_here = max_ending_here + (-3)
- max_ending_here = 4
Följ stegen nedan för att implementera idén:
- Initiera variablerna max_hittills = INT_MIN och max_ending_här = 0
- Kör en for loop från 0 till N-1 och för varje index i :
- Lägg till arr[i] till max_ending_här.
- Uppdatera om max_so_far är mindre än max_ending_here max_so_far to max_ending_here .
- Om max_ending_here <0 uppdaterar max_ending_here = 0
- Återvänd max_hittills
Nedan är implementeringen av ovanstående tillvägagångssätt.
lista sträng javaC++
// 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; } }>
Pytonorm 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. ?>>
Produktion
Maximum contiguous sum is 7>
Tidskomplexitet: PÅ)
Hjälputrymme: O(1)
Skriv ut den största summan sammanhängande subarrayen:
För att skriva ut subarrayen med den maximala summan tanken är att underhålla Start index för maximal_summa_slut_här vid nuvarande index så att när som helst maximum_summa_hittills är uppdaterad med maximal_summa_slut_här sedan startindex och slutindex för subarray kan uppdateras med Start och nuvarande index .
Följ stegen nedan för att implementera idén:
- Initiera variablerna s , Start, och slutet med 0 och max_hittills = INT_MIN och max_ending_här = 0
- Kör en for loop från 0 till N-1 och för varje index i :
- Lägg till arr[i] till max_ending_här.
- Uppdatera om max_so_far är mindre än max_ending_here max_so_far till max_ending_here och uppdatera Start till s och slutet till i .
- Om max_ending_here <0 uppdaterar max_ending_here = 0 och s med i+1 .
- Skriv ut värden från index Start till slutet .
Nedan är implementeringen av ovanstående tillvägagångssätt:
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>
Pytonorm # 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 ?>>
Produktion
Maximum contiguous sum is 7 Starting index 2 Ending index 6>
Tidskomplexitet: På)
Hjälputrymme: O(1)
Största Sum Contiguous Subarray använder Dynamisk programmering :
För varje index i lagrar DP[i] den maximala möjliga största summan sammanhängande delarrayen som slutar vid index i, och därför kan vi beräkna DP[i] med hjälp av den nämnda tillståndsövergången:
- DP[i] = max(DP[i-1] + arr[i] , arr[i] )
Nedan är implementeringen:
C++ // C++ program to print largest contiguous array sum #include using namespace std; void maxSubArraySum(int a[], int size) { vector dp(storlek, 0); dp[0] = a[0]; int ans = dp[0]; för (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>
Pytonorm # 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);>
Produktion
7>
Övningsproblem:
Givet en array av heltal (möjligen några negativa element), skriv ett C-program för att ta reda på *maximalprodukten* som är möjlig genom att multiplicera 'n' på varandra följande heltal i arrayen där n ? ARRAY_SIZE. Skriv också ut startpunkten för den maximala produktundermatrisen.