#3684
Tinder
Dându-se n
fete, probabilitatea ca fiecare fată să dea swipe dreapta și numărul de swipe-uri la dreapta, aflați numărul maxim de potriviri pe care el il poate obține.
IOIT 2020-21, Runda 3
Problema | Tinder | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 32 MB
/
Stivă 32 MB
|
Id soluție | #51773749 | Utilizator | |
Fișier | tinder.cpp | Dimensiune | 578 B |
Data încărcării | 17 August 2024, 19:25 | Scor / rezultat | Eroare de compilare |
tinder.cpp: In function 'int main()': tinder.cpp:18:41: error: no matching function for call to 'max(int, short int&)' dp[j+q]=max(dp[j]+p, dp[j+q]); ^ tinder.cpp:18:41: 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 tinder.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: tinder.cpp:18:41: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') dp[j+q]=max(dp[j]+p, dp[j+q]); ^ 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 tinder.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: tinder.cpp:18:41: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') dp[j+q]=max(dp[j]+p, dp[j+q]); ^ tinder.cpp:19:35: error: no matching function for call to 'max(int&, short int&)' maxx=max(maxx, dp[j+q]); ^ tinder.cpp:19:35: 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 tinder.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: tinder.cpp:19:35: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') maxx=max(maxx, dp[j+q]); ^ 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 tinder.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: tinder.cpp:19:35: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') maxx=max(maxx, dp[j+q]); ^ tinder.cpp:22:27: error: no matching function for call to 'max(short int&, int&)' dp[q]=max(dp[q], p); ^ tinder.cpp:22:27: 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 tinder.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: tinder.cpp:22:27: note: deduced conflicting types for parameter 'const _Tp' ('short int' and 'int') dp[q]=max(dp[q], p); ^ 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 tinder.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: tinder.cpp:22:27: note: deduced conflicting types for parameter 'const _Tp' ('short int' and 'int') dp[q]=max(dp[q], p); ^ tinder.cpp:23:29: error: no matching function for call to 'max(int&, short int&)' maxx=max(maxx, dp[q]); ^ tinder.cpp:23:29: 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 tinder.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: tinder.cpp:23:29: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') maxx=max(maxx, dp[q]); ^ 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 tinder.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: tinder.cpp:23:29: note: deduced conflicting types for parameter 'const _Tp' ('int' and 'short int') maxx=max(maxx, dp[q]); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Tinder 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ă.