#4216
EliminaElemente
C++
Scrieţi definiția completă a subprogramului C++ cu antetul:
int EliminaElemente(int a[], int n, int m)
Subprogramul returnează numărul minim de numere distincte care pot să rămână în a
după eliminarea a exact m
elemente.
Folclorul informatic
Problema | EliminaElemente | Operații I/O |
eliminaelemente.in /eliminaelemente.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 32 MB
|
Id soluție | #53159220 | Utilizator | |
Fișier | eliminaelemente.cpp | Dimensiune | 727 B |
Data încărcării | 19 Octombrie 2024, 14:35 | Scor / rezultat | Eroare de compilare |
eliminaelemente.cpp:6:29: error: 'v' has not been declared int EliminaElemente(int a[],v[1001], int n, int m) ^ eliminaelemente.cpp: In function 'int EliminaElemente(int*, int*, int, int)': eliminaelemente.cpp:8:16: warning: suggest parentheses around assignment used as truth value [-Wparentheses] for(int i;i=0;i<n) ^ eliminaelemente.cpp:8:19: warning: for increment expression has no effect [-Wunused-value] for(int i;i=0;i<n) ^ eliminaelemente.cpp:13:16: error: 'v' was not declared in this scope v[j]++; ^ eliminaelemente.cpp:18:12: error: 'v' was not declared in this scope if(v[j]==1) ^ eliminaelemente.cpp:24:19: warning: statement has no effect [-Wunused-value] for(p;p<n;p++) ^ eliminaelemente.cpp:33:20: warning: suggest parentheses around assignment used as truth value [-Wparentheses] if (m=0) ^ eliminaelemente.cpp:36:1: warning: no return statement in function returning non-void [-Wreturn-type] } ^ eliminaelemente.cpp: At global scope: eliminaelemente.cpp:37:1: error: expected unqualified-id before 'for' for(int i=0;i<n;i++) ^ eliminaelemente.cpp:37:13: error: 'i' does not name a type for(int i=0;i<n;i++) ^ eliminaelemente.cpp:37:17: error: 'i' does not name a type for(int i=0;i<n;i++) ^ eliminaelemente.cpp: In function 'int main()': eliminaelemente.cpp:52:36: error: invalid conversion from 'int' to 'int*' [-fpermissive] fout << EliminaElemente(a, n, m) << "\n"; ^ eliminaelemente.cpp:52:36: error: too few arguments to function 'int EliminaElemente(int*, int*, int, int)' eliminaelemente.cpp:6:5: note: declared here int EliminaElemente(int a[],v[1001], int n, int m) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema EliminaElemente 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ă.