#2271
ProdMax1
Se dă un șir cu n
numere întregi. Determinați cel mai mare număr care poate fi scris ca produs de două elemente ale șirului.
Problema | ProdMax1 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53860195 | Utilizator | |
Fișier | prodmax1.cpp | Dimensiune | 606 B |
Data încărcării | 13 Noiembrie 2024, 12:59 | Scor / rezultat | Eroare de compilare |
prodmax1.cpp: In function 'int main()': prodmax1.cpp:17:17: error: no matching function for call to 'max(long long int&, int&)' a=max(a,v[i]); ^ prodmax1.cpp:17:17: 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.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: prodmax1.cpp:17:17: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') a=max(a,v[i]); ^ 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.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: prodmax1.cpp:17:17: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') a=max(a,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /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: prodmax1.cpp:17:17: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' a=max(a,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /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: prodmax1.cpp:17:17: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' a=max(a,v[i]); ^ prodmax1.cpp:18:17: error: no matching function for call to 'min(long long int&, int&)' c=min(c,v[i]); ^ prodmax1.cpp:18:17: 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:193:5: note: template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&) min(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:193:5: note: template argument deduction/substitution failed: prodmax1.cpp:18:17: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') c=min(c,v[i]); ^ 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:239:5: note: template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare) min(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:239:5: note: template argument deduction/substitution failed: prodmax1.cpp:18:17: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') c=min(c,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /usr/include/c++/4.8/bits/stl_algo.h:4221:5: note: template<class _Tp> _Tp std::min(std::initializer_list<_Tp>) min(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4221:5: note: template argument deduction/substitution failed: prodmax1.cpp:18:17: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' c=min(c,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /usr/include/c++/4.8/bits/stl_algo.h:4226:5: note: template<class _Tp, class _Compare> _Tp std::min(std::initializer_list<_Tp>, _Compare) min(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4226:5: note: template argument deduction/substitution failed: prodmax1.cpp:18:17: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' c=min(c,v[i]); ^ prodmax1.cpp:24:21: error: no matching function for call to 'max(long long int&, int&)' b=max(b,v[i]); ^ prodmax1.cpp:24:21: 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.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: prodmax1.cpp:24:21: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') b=max(b,v[i]); ^ 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.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: prodmax1.cpp:24:21: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') b=max(b,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /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: prodmax1.cpp:24:21: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' b=max(b,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /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: prodmax1.cpp:24:21: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' b=max(b,v[i]); ^ prodmax1.cpp:26:21: error: no matching function for call to 'min(long long int&, int&)' d=min(d,v[i]); ^ prodmax1.cpp:26:21: 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:193:5: note: template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&) min(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:193:5: note: template argument deduction/substitution failed: prodmax1.cpp:26:21: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') d=min(d,v[i]); ^ 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/ostream:38, from /usr/include/c++/4.8/iostream:39, from prodmax1.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:239:5: note: template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare) min(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:239:5: note: template argument deduction/substitution failed: prodmax1.cpp:26:21: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') d=min(d,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /usr/include/c++/4.8/bits/stl_algo.h:4221:5: note: template<class _Tp> _Tp std::min(std::initializer_list<_Tp>) min(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4221:5: note: template argument deduction/substitution failed: prodmax1.cpp:26:21: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' d=min(d,v[i]); ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from prodmax1.cpp:3: /usr/include/c++/4.8/bits/stl_algo.h:4226:5: note: template<class _Tp, class _Compare> _Tp std::min(std::initializer_list<_Tp>, _Compare) min(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4226:5: note: template argument deduction/substitution failed: prodmax1.cpp:26:21: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' d=min(d,v[i]); ^ prodmax1.cpp:11:9: warning: unused variable 'p' [-Wunused-variable] int p=0; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ProdMax1 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ă.