#1508
Element_SA
C++
Să se scrie o funcție C++ care are ca parametri două numere naturale n
și m
și o matrice A(n , m)
avȃnd elemente numere întregi și returnează numărul de elemente „șa” din matrice. Un element A(i,j)
din matrice se numește element „șa” dacă este maximul de pe coloana j
si minimul de pe linia i
sau invers.
Admitere Mate-Info UBB, iulie 2015
Problema | Element_SA | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53037638 | Utilizator | |
Fișier | element_sa.cpp | Dimensiune | 708 B |
Data încărcării | 16 Octombrie 2024, 10:15 | Scor / rezultat | Eroare de compilare |
element_sa.cpp: In function 'int nr_sa(int, int, int (*)[100])': element_sa.cpp:7:11: error: declaration of 'int m' shadows a parameter int i,m,nr=0,j; ^ element_sa.cpp:15:27: error: ISO C++ forbids comparison between pointer and integer [-fpermissive] if(mini>A[i][j]) ^ element_sa.cpp:17:21: error: incompatible types in assignment of 'int' to 'int [100]' mini=A[i][j]; ^ element_sa.cpp:23:13: error: incompatible types in assignment of 'int' to 'int [100]' maxi=A[0][j]; ^ element_sa.cpp:26:26: error: the value of 'i' is not usable in a constant expression if(max<A[i][j]) ^ element_sa.cpp:7:9: note: 'int i' is not const int i,m,nr=0,j; ^ element_sa.cpp:26:16: error: parse error in template argument list if(max<A[i][j]) ^ element_sa.cpp:26:27: error: cannot resolve overloaded function 'max' based on conversion to type 'bool' if(max<A[i][j]) ^ element_sa.cpp:28:20: error: overloaded function with no contextual type information max=A[i][j]; ^ element_sa.cpp:36:50: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(A[i][j]==mini[i] && A[i][j]==max[j]) ^ element_sa.cpp: In function 'int main()': element_sa.cpp:52:24: error: invalid conversion from 'int (*)[100]' to 'int' [-fpermissive] cout << nr_sa(a,n,m); ^ element_sa.cpp:5:5: error: initializing argument 1 of 'int nr_sa(int, int, int (*)[100])' [-fpermissive] int nr_sa(int n,int m,int A[100][100]) ^ element_sa.cpp:52:24: error: invalid conversion from 'int' to 'int (*)[100]' [-fpermissive] cout << nr_sa(a,n,m); ^ element_sa.cpp:5:5: error: initializing argument 3 of 'int nr_sa(int, int, int (*)[100])' [-fpermissive] int nr_sa(int n,int m,int A[100][100]) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Element_SA face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. 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ă.