#417
Se dă lista muchiilor unui graf neorientat. Să se afișeze vârfurile de grad maxim.
| Problema | GradMax | Operații I/O |
gradmax.in/gradmax.out
|
|---|---|---|---|
| Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
| Id soluție | #50973181 | Utilizator | |
| Fișier | gradmax.cpp | Dimensiune | 655 B |
| Data încărcării | 16 Mai 2024, 16:34 | Scor/rezultat | Eroare de compilare |
gradmax.cpp: In function 'int main()': gradmax.cpp:20:51: error: no matching function for call to 'max(const unsigned int&, long long unsigned int&)' mx = max(max(d[u].size(), d[v].size()), mx); ^ gradmax.cpp:20:51: note: candidates are: In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/fstream:38, from gradmax.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template argument deduction/substitution failed: gradmax.cpp:20:51: note: deduced conflicting types for parameter 'const _Tp' ('unsigned int' and 'long long unsigned int') mx = max(max(d[u].size(), d[v].size()), mx); ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/fstream:38, from gradmax.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template argument deduction/substitution failed: gradmax.cpp:20:51: note: deduced conflicting types for parameter 'const _Tp' ('unsigned int' and 'long long unsigned int') mx = max(max(d[u].size(), d[v].size()), mx); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from gradmax.cpp:4: /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>) max(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template argument deduction/substitution failed: gradmax.cpp:20:51: note: mismatched types 'std::initializer_list<_Tp>' and 'unsigned int' mx = max(max(d[u].size(), d[v].size()), mx); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from gradmax.cpp:4: /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare) max(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template argument deduction/substitution failed: gradmax.cpp:20:51: note: mismatched types 'std::initializer_list<_Tp>' and 'unsigned int' mx = max(max(d[u].size(), d[v].size()), mx); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema GradMax 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ă.