candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:12:34: error: 'max' was not declared in this scope; did you mean 'std::max'?
12 | s[k] += v[j], s[k] = max(s[k], 0), s[k] = min(s[k], c[k]);
| ^~~
| std::max
In file included from /usr/include/c++/10/vector:60,
from candies.h:1,
from candies.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: 'std::max' declared here
300 | max(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
candies.cpp:12:55: error: 'min' was not declared in this scope; did you mean 'std::min'?
12 | s[k] += v[j], s[k] = max(s[k], 0), s[k] = min(s[k], c[k]);
| ^~~
| std::min
In file included from /usr/include/c++/10/vector:60,
from candies.h:1,
from candies.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: 'std::min' declared here
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~