#3798
NrMinMaxAp
C++
Scrieți funcția care are antetul:
int NrMinMaxAp(vector<int> &a)
Funcția va returna numărul care apare de cele mai multe ori în a
. Dacă există mai multe numere care apar de număr maxim de ori, se va returna minimul dintre ele.
Problema | NrMinMaxAp | Operații I/O |
nrminmaxap.in /nrminmaxap.out
|
---|---|---|---|
Limita timp | 0.3 secunde | Limita memorie |
Total: 256 MB
/
Stivă 128 MB
|
Id soluție | #52380675 | Utilizator | |
Fișier | nrminmaxap.cpp | Dimensiune | 392 B |
Data încărcării | 28 Septembrie 2024, 12:02 | Scor / rezultat | Eroare de compilare |
nrminmaxap.cpp: In function 'int NrMinMaxAp(std::vector<int>&)': nrminmaxap.cpp:9:14: error: no match for 'operator[]' (operand types are 'std::unordered_map<int, int>' and 'std::vector<int>') ocmap[a]++; ^ nrminmaxap.cpp:9:14: note: candidates are: In file included from /usr/include/c++/4.8/unordered_map:48:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:115, from nrminmaxap.cpp:1: /usr/include/c++/4.8/bits/unordered_map.h:595:7: note: std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type& std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type&) [with _Key = int; _Tp = int; _Hash = std::hash<int>; _Pred = std::equal_to<int>; _Alloc = std::allocator<std::pair<const int, int> >; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type = int; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::key_type = int] operator[](const key_type& __k) ^ /usr/include/c++/4.8/bits/unordered_map.h:595:7: note: no known conversion for argument 1 from 'std::vector<int>' to 'const key_type& {aka const int&}' /usr/include/c++/4.8/bits/unordered_map.h:599:7: note: std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type& std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::key_type&&) [with _Key = int; _Tp = int; _Hash = std::hash<int>; _Pred = std::equal_to<int>; _Alloc = std::allocator<std::pair<const int, int> >; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type = int; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::key_type = int] operator[](key_type&& __k) ^ /usr/include/c++/4.8/bits/unordered_map.h:599:7: note: no known conversion for argument 1 from 'std::vector<int>' to 'std::unordered_map<int, int>::key_type&& {aka int&&}' nrminmaxap.cpp:8:16: warning: unused variable 'x' [-Wunused-variable] for (auto &x : a) { ^ nrminmaxap.cpp:13:30: error: invalid initialization of reference of type 'std::pair<int, int>&' from expression of type 'std::pair<const int, int>' for (pair<int, int> &p : ocmap) { ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema NrMinMaxAp 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ă.