Problem stoning
User MintTea
Submission Time 2024-01-26 15:08:21
Score 0
Max Time N/A
Max Memory N/A

Compile Error

stoning.cpp: In function ‘int32_t main()’:
stoning.cpp:19:7: error: redeclaration of ‘long long int forced’
19 | int forced = min(forced, 0);
| ^~~~~~
stoning.cpp:18:13: note: ‘long long int forced’ previously declared here
18 | int forced = min(options[i][0], options[i][1]);
| ^~~~~~
stoning.cpp:19:29: error: no matching function for call to ‘min(long long int&, int)’
19 | int forced = min(forced, 0);
| ^
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 stoning.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:198:5: note: candidate: ‘template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)’
198 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/9/