#3903
Se dă o matrice A, formată din N linii și N coloane. Asupra unei submatrice cu colțul din stânga-sus aflat pe linia l1 și coloana c1, și colțul din dreapta-jos aflat pe linia l2 și coloana c2, se poate efectua operație de mărire a elementelor cu un număr întreg v. Afișați matricea A, după efectuarea a Q astfel de operații.
ad-hoc
| Problema | Diff2dArrays | Operații I/O |
tastatură/ecran
|
|---|---|---|---|
| Limita timp | 0.4 secunde | Limita memorie |
Total: 4 MB
/
Stivă 2 MB
|
| Id soluție | #64137400 | Utilizator | |
| Fișier | diff2darrays.cpp | Dimensiune | 395 B |
| Data încărcării | 20 Aprilie 2026, 08:36 | Scor/rezultat | Eroare de compilare |
diff2darrays.cpp:3:13: error: expected unqualified-id before numeric constant 3 | int n,c1,c2,11,12,i,I,q,a[501][501],n,i; | ^~ diff2darrays.cpp: In function ‘int main()’: diff2darrays.cpp:6:9: error: ‘i’ was not declared in this scope 6 | for(i=1;i<=n;i++) | ^ diff2darrays.cpp:7:14: error: ‘a’ was not declared in this scope 7 | cin>>a[i][j]; | ^ diff2darrays.cpp:7:19: error: ‘j’ was not declared in this scope 7 | cin>>a[i][j]; | ^ diff2darrays.cpp:8:10: error: ‘q’ was not declared in this scope 8 | cin>>q; | ^ diff2darrays.cpp:10:12: error: no match for ‘operator>>’ (operand types are ‘std::istream’ {aka ‘std::basic_istream<char>’} and ‘int’) 10 | cin>>11>>c1>>12>>c2>>v; | ~~~^~~~ | | | | | int | std::istream {aka std::basic_istream<char>} In file included from /usr/include/c++/13/iostream:42, from diff2darrays.cpp:1: /usr/include/c++/13/istream:325:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(void*&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 325 | operator>>(void*& __p) | ^~~~~~~~ /usr/include/c++/13/istream:325:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: invalid conversion from ‘int’ to ‘void*’ [-fpermissive] 10 | cin>>11>>c1>>12>>c2>>v; | ^~ | | | int diff2darrays.cpp:10:14: error: cannot bind rvalue ‘(void*)11’ to ‘void*&’ /usr/include/c++/13/istream:224:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long double&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 224 | operator>>(long double& __f) | ^~~~~~~~ /usr/include/c++/13/istream:224:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘long double&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:220:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(double&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 220 | operator>>(double& __f) | ^~~~~~~~ /usr/include/c++/13/istream:220:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘double&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:216:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(float&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 216 | operator>>(float& __f) | ^~~~~~~~ /usr/include/c++/13/istream:216:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘float&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:201:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 201 | operator>>(unsigned long long& __n) | ^~~~~~~~ /usr/include/c++/13/istream:201:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘long long unsigned int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:197:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 197 | operator>>(long long& __n) | ^~~~~~~~ /usr/include/c++/13/istream:197:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘long long int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:192:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 192 | operator>>(unsigned long& __n) | ^~~~~~~~ /usr/include/c++/13/istream:192:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘long unsigned int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:188:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 188 | operator>>(long& __n) | ^~~~~~~~ /usr/include/c++/13/istream:188:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘long int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:184:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 184 | operator>>(unsigned int& __n) | ^~~~~~~~ /usr/include/c++/13/istream:184:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘unsigned int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:181:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(int&) [with _CharT = char; _Traits = std::char_traits<char>]’ (near match) 181 | operator>>(int& __n); | ^~~~~~~~ /usr/include/c++/13/istream:181:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘int&’ to an rvalue of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:177:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(short unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 177 | operator>>(unsigned short& __n) | ^~~~~~~~ /usr/include/c++/13/istream:177:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘short unsigned int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:174:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(short int&) [with _CharT = char; _Traits = std::char_traits<char>]’ (near match) 174 | operator>>(short& __n); | ^~~~~~~~ /usr/include/c++/13/istream:174:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘short int&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:170:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(bool&) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 170 | operator>>(bool& __n) | ^~~~~~~~ /usr/include/c++/13/istream:170:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: cannot bind non-const lvalue reference of type ‘bool&’ to a value of type ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:122:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(__istream_type& (*)(__istream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 122 | operator>>(__istream_type& (*__pf)(__istream_type&)) | ^~~~~~~~ /usr/include/c++/13/istream:122:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: invalid conversion from ‘int’ to ‘std::basic_istream<char>::__istream_type& (*)(std::basic_istream<char>::__istream_type&)’ {aka ‘std::basic_istream<char>& (*)(std::basic_istream<char>&)’} [-fpermissive] 10 | cin>>11>>c1>>12>>c2>>v; | ^~ | | | int /usr/include/c++/13/istream:126:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(__ios_type& (*)(__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>; __ios_type = std::basic_ios<char>]’ (near match) 126 | operator>>(__ios_type& (*__pf)(__ios_type&)) | ^~~~~~~~ /usr/include/c++/13/istream:126:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: invalid conversion from ‘int’ to ‘std::basic_istream<char>::__ios_type& (*)(std::basic_istream<char>::__ios_type&)’ {aka ‘std::basic_ios<char>& (*)(std::basic_ios<char>&)’} [-fpermissive] 10 | cin>>11>>c1>>12>>c2>>v; | ^~ | | | int /usr/include/c++/13/istream:133:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’ (near match) 133 | operator>>(ios_base& (*__pf)(ios_base&)) | ^~~~~~~~ /usr/include/c++/13/istream:133:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: invalid conversion from ‘int’ to ‘std::ios_base& (*)(std::ios_base&)’ [-fpermissive] 10 | cin>>11>>c1>>12>>c2>>v; | ^~ | | | int /usr/include/c++/13/istream:349:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(__streambuf_type*) [with _CharT = char; _Traits = std::char_traits<char>; __streambuf_type = std::basic_streambuf<char>]’ (near match) 349 | operator>>(__streambuf_type* __sb); | ^~~~~~~~ /usr/include/c++/13/istream:349:7: note: conversion of argument 1 would be ill-formed: diff2darrays.cpp:10:14: error: invalid conversion from ‘int’ to ‘std::basic_istream<char>::__streambuf_type*’ {aka ‘std::basic_streambuf<char>*’} [-fpermissive] 10 | cin>>11>>c1>>12>>c2>>v; | ^~ | | | int diff2darrays.cpp:10:12: note: candidate: ‘operator>>(int, int)’ (built-in) 10 | cin>>11>>c1>>12>>c2>>v; | ~~~^~~~ diff2darrays.cpp:10:12: note: no known conversion for argument 1 from ‘std::istream’ {aka ‘std::basic_istream<char>’} to ‘int’ In file included from /usr/include/c++/13/string:55, from /usr/include/c++/13/bits/locale_classes.h:40, from /usr/include/c++/13/bits/ios_base.h:41, from /usr/include/c++/13/ios:44, from /usr/include/c++/13/ostream:40, from /usr/include/c++/13/iostream:41: /usr/include/c++/13/bits/basic_string.tcc:827:5: note: candidate: ‘template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, __cxx11::basic_string<_CharT, _Traits, _Alloc>&)’ 827 | operator>>(basic_istream<_CharT, _Traits>& __in, | ^~~~~~~~ /usr/include/c++/13/bits/basic_string.tcc:827:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: mismatched types ‘std::__cxx11::basic_string<_CharT, _Traits, _Alloc>’ and ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ In file included from /usr/include/c++/13/istream:1106: /usr/include/c++/13/bits/istream.tcc:975:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _CharT&)’ 975 | operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) | ^~~~~~~~ /usr/include/c++/13/bits/istream.tcc:975:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: deduced conflicting types for parameter ‘_CharT’ (‘char’ and ‘int’) 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:846:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, unsigned char&)’ 846 | operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c) | ^~~~~~~~ /usr/include/c++/13/istream:846:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: cannot convert ‘11’ (type ‘int’) to type ‘unsigned char&’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:851:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, signed char&)’ 851 | operator>>(basic_istream<char, _Traits>& __in, signed char& __c) | ^~~~~~~~ /usr/include/c++/13/istream:851:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: cannot convert ‘11’ (type ‘int’) to type ‘signed char&’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:893:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _CharT*)’ 893 | operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s) | ^~~~~~~~ /usr/include/c++/13/istream:893:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: mismatched types ‘_CharT*’ and ‘int’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:936:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, unsigned char*)’ 936 | operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s) | ^~~~~~~~ /usr/include/c++/13/istream:936:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: cannot convert ‘11’ (type ‘int’) to type ‘unsigned char*’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:942:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, signed char*)’ 942 | operator>>(basic_istream<char, _Traits>& __in, signed char* __s) | ^~~~~~~~ /usr/include/c++/13/istream:942:5: note: template argument deduction/substitution failed: diff2darrays.cpp:10:14: note: cannot convert ‘11’ (type ‘int’) to type ‘signed char*’ 10 | cin>>11>>c1>>12>>c2>>v; | ^~ /usr/include/c++/13/istream:1096:5: note: candidate: ‘template<class _Istream, class _Tp> _Istream&& std::operator>>(_Istream&&, _Tp&&)’ 1096 | operator>>(_Istream&& __is, _Tp&& __x) | ^~~~~~~~ /usr/include/c++/13/istream:1096:5: note: template argument deduction/substitution failed: /usr/include/c++/13/istream: In substitution of ‘template<class _Istream, class _Tp> _Istream&& std::operator>>(_Istream&&, _Tp&&) [with _Istream = std::basic_istream<char>&; _Tp = int]’: diff2darrays.cpp:10:14: required from here /usr/include/c++/13/istream:1096:5: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ diff2darrays.cpp:10:30: error: ‘v’ was not declared in this scope 10 | cin>>11>>c1>>12>>c2>>v; | ^ diff2darrays.cpp:11:13: error: ‘i’ was not declared in this scope 11 | for(i=11; i<=12; i++) | ^ diff2darrays.cpp:12:5: error: ‘j’ was not declared in this scope 12 | for(j=c1;j<=c2; j++) a[i][j]+=v; | ^ diff2darrays.cpp:12:22: error: ‘a’ was not declared in this scope 12 | for(j=c1;j<=c2; j++) a[i][j]+=v; | ^ diff2darrays.cpp:14:9: error: ‘i’ was not declared in this scope 14 | for(i=1; i<=n; i++) {for(j=1;j<=n;j++) | ^ diff2darrays.cpp:14:30: error: ‘j’ was not declared in this scope 14 | for(i=1; i<=n; i++) {for(j=1;j<=n;j++) | ^ diff2darrays.cpp: In lambda function: diff2darrays.cpp:15:18: error: expected ‘{’ before ‘[’ token 15 | cout<<[i][j]<<" ";cout<<endl;} | ^ diff2darrays.cpp: In function ‘int main()’: diff2darrays.cpp:14:26: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation] 14 | for(i=1; i<=n; i++) {for(j=1;j<=n;j++) | ^~~ diff2darrays.cpp:15:27: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’ 15 | cout<<[i][j]<<" ";cout<<endl;} | ^~~~ diff2darrays.cpp:16:14: error: expected ‘}’ at end of input 16 | return 0; | ^ diff2darrays.cpp:4:11: note: to match this ‘{’ 4 | int main(){ | ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Diff2dArrays 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ă.