#763
Matrice3
Se dă o matrice cu n
linii și m
coloane și elemente numere naturale și o valoare k
. Să se modifice cel mult k
elemente ale matricei, astfel încât toate liniile matricei să aibă aceeași sumă a elementelor.
Problema | Matrice3 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #50490592 | Utilizator | |
Fișier | matrice3.cpp | Dimensiune | 1.79 KB |
Data încărcării | 11 Aprilie 2024, 13:23 | Scor / rezultat | Eroare de compilare |
matrice3.cpp: In function 'int main()': matrice3.cpp:75:24: error: no match for 'operator=' (operand types are 'element' and '<brace-enclosed initializer list>') changes[p] = {i, 0, a[i][0] + s - sum}; ^ matrice3.cpp:75:24: note: candidates are: matrice3.cpp:6:8: note: element& element::operator=(const element&) struct element ^ matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const element&' matrice3.cpp:6:8: note: element& element::operator=(element&&) matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'element&&' matrice3.cpp:85:32: error: no match for 'operator=' (operand types are 'element' and '<brace-enclosed initializer list>') changes[p] = {i, j, a[i][j] - (sum - s)}; ^ matrice3.cpp:85:32: note: candidates are: matrice3.cpp:6:8: note: element& element::operator=(const element&) struct element ^ matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const element&' matrice3.cpp:6:8: note: element& element::operator=(element&&) matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'element&&' matrice3.cpp:91:32: error: no match for 'operator=' (operand types are 'element' and '<brace-enclosed initializer list>') changes[p] = {i, j, 0}; ^ matrice3.cpp:91:32: note: candidates are: matrice3.cpp:6:8: note: element& element::operator=(const element&) struct element ^ matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const element&' matrice3.cpp:6:8: note: element& element::operator=(element&&) matrice3.cpp:6:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'element&&'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Matrice3 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ă.