Problem waterbottles3
User brat
Submission Time 2025-09-25 21:51:09
Score 0
Max Time N/A
Max Memory N/A

Compile Error

waterbottles3.cpp: In function ‘int main()’:
waterbottles3.cpp:19:24: error: expected ‘;’ before ‘bottles’
19 | prev = bottles[index]
| ^
| ;
20 | bottles[index] = value;
| ~~~~~~~
waterbottles3.cpp:26:15: error: ‘X’ was not declared in this scope
26 | ans -= min(X - prev, prev - value);
| ^
waterbottles3.cpp:32:27: error: no matching function for call to ‘max(int, long long int)’
32 | ans += max(0, x - value);
| ^
In file included from /usr/include/c++/9/bits/specfun.h:45,
from /usr/include/c++/9/cmath:1927,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41,
from waterbottles3.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&)