kitchen.cpp: In function 'int main()':
kitchen.cpp:31:30: error: no matching function for call to 'min(long long int&, int&)'
31 | dp[barr[0]] = min(barr[0], n);
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/ostream:38,
from /usr/include/c++/10/iostream:39,
from kitchen.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
230 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: template argument deduction/substitution failed:
kitchen.cpp:31:30: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
31 | dp[barr[0]] = min(barr[0], n);
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/ostream:38,
from /usr/include/c++/10/iostream:39,
from kitchen.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: template argument deduction/substitution failed:
kitchen.cpp:31:30: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
31 | dp[barr[0]] = min(barr[0], n);
| ^
kitchen.cpp:35:71: error: no matching function for call to 'min(long long int&, int&)'
35 | if (barr[i] <= j) dp[j] = max(dp[j], dp[j-barr[i]] + min(barr[i], n));
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/ostream:38,
from /usr/include/c++/10/iostream:39,
from kitchen.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
230 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: template argument deduction/substitution failed:
kitchen.cpp:35:71: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
35 | if (barr[i] <= j) dp[j] = max(dp[j], dp[j-barr[i]] + min(barr[i], n));
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/ostream:38,
from /usr/include/c++/10/iostream:39,
from kitchen.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: template argument deduction/substitution failed:
kitchen.cpp:35:71: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
35 | if (barr[i] <= j) dp[j] = max(dp[j], dp[j-barr[i]] + min(barr[i], n));
| ^