█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 6568

Problema 0x94 - Subarreglo de máxima suma

  • Autor: carrillodev
  • Fecha: 2022-08-07 23:59:28 UTC (Hace más de 1 año)
Caso # Resultado Tiempo Memoria
#1
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#2
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#3
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#4
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#5
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#6
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#7
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#8
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#9
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#10
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#11
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#12
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#13
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#14
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#15
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#16
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#17
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#18
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#19
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#20
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#21
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#22
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#23
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
#24
Error de compilación
                      main.cpp:1:10: fatal error: 'bits/stdc++. h' file not found
#include <bits/stdc++. h>
         ^~~~~~~~~~~~~~~~
1 error generated.

                    
Puntos totales: 0 / 100

Código

#include <bits/stdc++. h>

int maxSubarraySum(int arr[], int size) {
    int maxSum = INT_MIN;
    int sum = 0;
    for(int i = 0; i < size; i++) {
        sum += arr[i];
        if(sum > maxSum) {
            maxSum = sum;
        }
        if(sum < 0) {
            sum = 0;
        }
    }
    return maxSum;
}

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

    cout<<maxSubarraySum(arr, n);
    return 0;
}