Informatică, întrebare adresată de bbaba14573, 8 ani în urmă

Plss in c++
Se dă o matrice mt cu n linii și m coloane. Să se afle submatricea de sumă maximă din matrice.
Date de intrare
De pe prima linie se citesc de la tastatură numerele n și m. De pe următoarele n linii se citesc m numere naturale care reprezintă elementele matricei.

Date de ieșire
Programul va afișa pe ecran suma maximă a unei submatrice.

Restricții
1 ≤ n, m ≤ 50
-3 000 ≤ mt[i][j] ≤ 3 000
Exemplu 1
Date de intrare
4 4
-1 -1 -1 -1
-1 -1 -1 -1
-1 -1 -1 -1
-1 -1 -1 -1

Date de ieșire
-1

Exemplu 2

Date de intrare
4 4
-1 -1 -1 -1
-1 2 2 -1
-1 -1 -1 -1
-1 -1 -1 -1

Date de iesire
4


Cristina2901: e de pe pbinfo?
bbaba14573: nu, dar exista una asemanatoare

Răspunsuri la întrebare

Răspuns de dobijec891
0

#include <iostream>

using namespace std;

// nu esti obligat sa folosesti in daca vrei ceva mai mare atunci pune long //long.

int mt[3000][3000], sp[3000][3000];

int main() {

   int n, m;

   cin >> n >> m;

   for (int i = 1; i <= n; ++i) {

       for (int j = 1; j <= m; ++j) {

           cin >> mt[i][j];

           sp[i][j] = mt[i][j] + sp[i - 1][j] + sp[i][j - 1] - sp[i - 1][j - 1];

       }

   }

   int max = sp[1][1];

   int x1, y1, x2, y2, sum = 0;

   for (int x1 = 1; x1 <= n; x1++)

       for (int y1 = 1; y1 <= m; y1++)

           for (int x2 = x1; x2 <= n; x2++)

               for (int y2 = y1; y2 <= m; y2++) {

                   sum = sp[x2][y2] - sp[x1 - 1][y2] - sp[x2][y1 - 1] + sp[x1 - 1][y1 - 1];

                   if (sum > max) {

                       max = sum;

                   }

               }

   cout << max;

   return 0;

}

Alte întrebări interesante