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

Envío 6807

Problema 0xa6 - Submatriz de suma máxima en una matriz no muy grande

  • Autor: danidiaztech
  • Fecha: 2022-12-09 03:01:06 UTC (Hace alrededor de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.005 s 5 KBi
#2
Correcto
0.006 s 5 KBi
#3
Correcto
0.006 s 1 KBi
#4
Correcto
0.005 s 3 KBi
#5
Correcto
0.005 s 16 KBi
#6
Correcto
0.005 s 3 KBi
#7
Correcto
0.005 s 6 KBi
#8
Tiempo límite excedido
1.064 s 1 KBi
#9
Tiempo límite excedido
1.095 s 1 KBi
#10
Tiempo límite excedido
1.098 s 9 KBi
#11
Tiempo límite excedido
1.073 s 1 KBi
#12
Correcto
0.94 s 2 KBi
#13
Tiempo límite excedido
1.097 s 4 KBi
#14
Tiempo límite excedido
1.038 s 1 KBi
#15
Tiempo límite excedido
1.036 s 1 KBi
#16
Tiempo límite excedido
1.067 s 1 KBi
#17
Tiempo límite excedido
1.071 s 2 KBi
#18
Correcto
0.926 s 1 KBi
Puntos totales: 50 / 100

Código

// Made by Daniel Diaz (@Danidiaztech)
#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
#define forn(i, n) for (int i = 0; i < n; i++) // for in range in python
#define FOR(i, a, b) for (int i = a; i < b; i++) // for in range in python
#define int long long int
#define double long double
#define pb push_back
#define ff first
#define ss second
#define mk make_pair

typedef pair<int, int> pii;

const int MAX = 1e6;
const int MIN = -MAX;
const int INF = LLONG_MAX;
const int MINF = LLONG_MIN;
const int MOD = 1e9 + 7;

// int arr[MAX];
void solve(){
  int rows, columns;
  cin >> rows >> columns;
  int a[rows][columns];
  forn(i, rows){forn(j, columns) cin >> a[i][j];}
  int best = MINF;

  for (int r0 = 0; r0 < rows; r0++){
    for (int c0 = 0; c0 < columns; c0++){
      for (int r1 = r0; r1 < rows; r1++){
        for (int c1 = c0; c1 < columns; c1++){
          // Calculate sum
          int sum = 0;
          for (int i = r0; i <= r1; i++){
            for (int j = c0; j <= c1; j++){
              sum += a[i][j];
            }
          }
          best = max(best, sum);
        }
      }
    }
  }
  cout << best << endl;
}

int32_t main() {
  fastInp;
  #if LOCAL
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
  #endif

  int tc = 1;
  // cin >> tc;

  for (int t = 1; t <= tc; t++){
    // cout << "Case #" << t << ": ";
    solve();
  }
  return 0;
}