Problem neckties
User ChickenCoder
Submission Time 2023-07-03 23:44:47
Score 0
Max Time N/A
Max Memory N/A

Compile Error

neckties.cpp: In function ‘int main()’:
neckties.cpp:18:79: error: no matching function for call to ‘max(int, long long int)’
18 | for (int i = 1; i <= n; i++) pref[i] = max(pref[i-1], max(0, arr[i] - barr[i]));
| ^
In file included from /usr/include/c++/9/bits/char_traits.h:39,
from /usr/include/c++/9/ios:40,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from neckties.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: candidate: ‘template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)’
222 | max(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: template argument deduction/substitution failed:
neckties.cpp:18:79: note: deduced conflicting types for parameter ‘const _Tp’ (‘in