#3165
MatrDivImp1
Se consideră o matrice cu m
linii și n
coloane, numere naturale. Folosind metoda Divide et Impera, determinați suma numerelor pare din matrice.
Problema | MatrDivImp1 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54295239 | Utilizator | |
Fișier | matrdivimp1.cpp | Dimensiune | 702 B |
Data încărcării | 25 Noiembrie 2024, 09:31 | Scor / rezultat | Eroare de compilare |
matrdivimp1.cpp: In function 'int S(int, int, int, int)': matrdivimp1.cpp:13:13: error: redeclaration of 'int s' int s = s + S(x1, y1, m1, m2); ^ matrdivimp1.cpp:12:53: error: 'int s' previously declared here int m1 = (x1 + x2) / 2, m2 = (y1 + y2) / 2, s = 0; ^ matrdivimp1.cpp:14:13: error: redeclaration of 'int s' int s = s + S(x1, m2 + 1, m1, y2); ^ matrdivimp1.cpp:12:53: error: 'int s' previously declared here int m1 = (x1 + x2) / 2, m2 = (y1 + y2) / 2, s = 0; ^ matrdivimp1.cpp:15:13: error: redeclaration of 'int s' int s = s + S(m1 + 1, y1, x2, m2); ^ matrdivimp1.cpp:12:53: error: 'int s' previously declared here int m1 = (x1 + x2) / 2, m2 = (y1 + y2) / 2, s = 0; ^ matrdivimp1.cpp:16:13: error: redeclaration of 'int s' int s = s + S(m1 + 1, m2 + 1, x2, y2); ^ matrdivimp1.cpp:12:53: error: 'int s' previously declared here int m1 = (x1 + x2) / 2, m2 = (y1 + y2) / 2, s = 0; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema MatrDivImp1 face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.